ZigbeeApp/Shared/Phone/ZigBee/Device/DimmerSwitch.cs
New file @@ -0,0 +1,17 @@ using System; using System.Collections.Generic; using System.Text; namespace ZigBee.Device { /// <summary> /// 调光器控制器 /// </summary> public class DimmerSwitch : LightBase { public DimmerSwitch() { this.Type = DeviceType.DimmerSwitch; } } }