This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Haier air conditioner
#4
Example of sending data packets:
Code:
port = require('serial').open('/dev/ttyUSB0', { baudrate = 9600 })

function send(...)
  local data = string.char(...)
  local len = #data + 1
  local hdr = string.char(0xFF, 0xFF, len)
  local csum = len

  for _, byte in ipairs({ ... }) do
    csum = bit.band(csum + byte, 0xFF)
  end

  local pkt = hdr .. data .. string.char(csum)
  port:write(pkt)
end

send(0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4D, 0x02) -- turn on
send(0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4D, 0x03) -- turn off
send(0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4D, 0x01) -- request state
Reply


Messages In This Thread
Haier air conditioner - by a455115 - 21.12.2022, 09:46
RE: Haier air conditioner - by admin - 21.12.2022, 09:57
RE: Haier air conditioner - by a455115 - 22.12.2022, 13:54
RE: Haier air conditioner - by admin - 23.12.2022, 08:30
RE: Haier air conditioner - by a455115 - 23.12.2022, 08:36

Forum Jump: