CHANGELOG.txt 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. 2023-06-11:
  2. - add support for DIY DS18B20 sensor sending via 433MHz cheap transmitter
  3. 2023-06-11:
  4. - add support for sensors sending 24 bit where 12 bit is the device address and 12 bit the value
  5. 2023-05-30:
  6. - add a status file that is touched every minute as long as something has been received
  7. 2023-05-30:
  8. - add no-receive-timeout after which the program will be exited (and will be restarted by systemd)
  9. - minor improvements
  10. 2023-05-29:
  11. - fix #1 - TypeError: cannot unpack non-iterable NoneType object
  12. add try/except to catch this rarely occuring error
  13. cul2mqtt.py[1850863]: parseRXCode(inCmd, source_cul)# May 03 14:41:11 pve cul2mqtt.py[1850863]: File "/home/pi/cul2mqtt/cul2mqtt.py", line 434, in parseRXCode
  14. cul2mqtt.py[1850863]: receivedForDevice, receivedCmnd = decodeInterTechnoRX(rx_code_stripped)
  15. cul2mqtt.py[1850863]: TypeError: cannot unpack non-iterable NoneType object
  16. 2023-03-14:
  17. - fixed bug in MQTT on_message callback if add_statTopics_on is defined for device
  18. 2022-11-18:
  19. - basic support for sensors sending values
  20. - small changes to config structure (TX_interface_prefer moved to cul section)
  21. 2021-03-14:
  22. - added support for using Tasmota ESP8266 firmware as a Serial Bridge for building an MQTT-CUL rather than my own outdated, instable and never published MQTT-Serial-firmware
  23. tested with Tasmota v9.3.1
  24. 2020-12-09:
  25. - fixed bug: program terminated when UART-CUL enabled/configured but not available
  26. - fix bug in MQTT input when using 'add_statTopics_on'
  27. - added: initialize MQTT-CUL with configured culInitCmd (i.E. "X21", "X05") on MQTT connect
  28. - added support for certain remote controls that aren´t directly supported by a-culfw by parsing RAW data (a-culfw initialized with X05 command)
  29. - added repeated commands
  30. - added ini configuration using configparser
  31. - lots of improvements and fixes
  32. - README updated
  33. 2020-11-30:
  34. - integrated support for InterTechno remotes/devices with fixed code
  35. no need to specify RX/TX commands, just specify a device ID like IT_A1, IT_C3 etc.
  36. - added logging (logs all known received commands and status messages to file by default)
  37. 2020-04-06:
  38. - devices configuration using YAML file (cul2mqtt_devices.yaml)
  39. - calculate TX code from RX code for InterTechno compatible devices (code from FHEM project ported to Python)
  40. no need any more to identify and specify TX codes for these devices, just specify the RX code and the TX is generated on the fly when needed