Example #1
0
 public SmartLightState(SmartLightState state)
 {
     if (state != null)
     {
         this.Intensity = state.Intensity;
         this.Color     = state.Color;
     }
 }
Example #2
0
 public SmartLightState(ushort intensity, SmartLightColor color)
 {
     this.Intensity = intensity;
     this.Color     = color;
 }