using System; using System.Collections.Generic; using System.Text; namespace ZigBee.Device { /// /// 调光器控制器 /// public class DimmerSwitch : LightBase { public DimmerSwitch() { this.Type = DeviceType.DimmerSwitch; } } }