示例#1
0
        public void SetDimLevel(UInt16 dimLevel, UInt32 fadeTime)
        {
            LifxSetDimAbsoluteCommand command = new LifxSetDimAbsoluteCommand(dimLevel, fadeTime);

            LifxCommunicator.Instance.SendCommand(command, this);
        }
示例#2
0
 public async Task SetDimLevelCommand(UInt16 dimLevel, UInt32 fadeTime)
 {
     LifxSetDimAbsoluteCommand command = new LifxSetDimAbsoluteCommand(dimLevel, fadeTime);
     await LifxCommunicator.Instance.SendCommand(command, this);
 }