Пример #1
0
        public static async Task SetStateAsync(this SwitchDeviceBase device, bool state, int channelIndex = 1)
        {
            if (device == null)
            {
                throw new ArgumentNullException(nameof(device));
            }

            await device.Service.SetDeviceStateAsync(device.Id, state, channelIndex).ConfigureAwait(false);
        }
Пример #2
0
 public static async Task TurnOffAsync(this SwitchDeviceBase device, int channelIndex = 1)
 {
     await device.SetStateAsync(false, channelIndex).ConfigureAwait(false);
 }