wxr
2020-09-10 af1cb3ecd0f4b0589e00b28f7f9edccf39e6e12b
HDL_ON/Entity/Function/TV.cs
@@ -5,6 +5,24 @@
    {
        public TV()
        {
            trait_on_off.value = "off";
        }
        public void ControlTV(InfraredCode_TV iCode)
        {
            int RandKey = new Random().Next(0, 255);
            var textByte = (byte)iCode;
            Control.ControlBytesSend(Command.InfraredControl, bus_Data.SubnetID, bus_Data.DeviceID, new byte[] { 1, bus_Data.LoopID, textByte, 0, 0, (byte)RandKey }, 0);
        }
        public void ControlTV(int number)
        {
            int RandKey = new Random().Next(0, 255);
            var textByte = (byte)(number + 7);
            if (number == 0)
            {
                textByte = 18;
            }
            Control.ControlBytesSend(Command.InfraredControl, bus_Data.SubnetID, bus_Data.DeviceID, new byte[] { 1, bus_Data.LoopID, textByte, 0, 0, (byte)RandKey },0);
        }
    }
}