Exemplo n.º 1
0
        public async Task SetMasterVolumeAsyncTest()
        {
            var robot = await RobotTests.GetRobot();

            await robot.Audio.SetMasterVolumeAsync(5);

            await robot.Audio.SayTextAsync("Master Volume at 5");

            await robot.Audio.SetMasterVolumeAsync(1);

            await robot.Audio.SayTextAsync("Master Volume at 1");
        }
Exemplo n.º 2
0
        public async Task SayTextAsyncTest()
        {
            var robot = await RobotTests.GetRobot();

            await robot.Audio.SayTextAsync("good morning world!  It's a beautiful day");
        }