cul2mqtt_devices.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # No need any more to specify RX codes for InterTechno fixed code devices.
  2. # Just use a device ID starting with "IT_" and containing the house code and device number, i.E. "IT_A1", "IT_C4" etc.
  3. # TX codes for all InterTechno compatible devices are generated on the fly, so also no need to get and specify them here.
  4. # name: internal name, seen in log files and verbose output
  5. # statTopic: MQTT topic to publish to when a valid RX code for this device was received
  6. # can be used to control a Tasmota device from an RF remote
  7. # cmdTopic: MQTT topic to subscribe to (to control a RF device like a InterTechno plug or a ceiling fan remote from i.E. Home Assistant)
  8. "IT_A1":
  9. name: "InterTechno A1"
  10. #"TX":
  11. # "ON": "is000000000FFF"
  12. # "OFF": "is000000000FF0"
  13. #"RX":
  14. # "ON": "i000015"
  15. # "OFF": "i000014"
  16. statTopic: "cmnd/Lamp1/POWER"
  17. #cmdTopic: ""
  18. "IT_A2":
  19. name: "InterTechno A2"
  20. #"TX":
  21. # "ON": "is0000F0000FFF"
  22. # "OFF": "is0000F0000FF0"
  23. #"RX":
  24. # "ON": "i004015"
  25. # "OFF": "i004014"
  26. statTopic: "cmnd/Lamp2/POWER"
  27. #cmdTopic: ""
  28. "IT_F9":
  29. name: "InterTechno F9"
  30. #"TX":
  31. # "ON": "is0000F0000FFF"
  32. # "OFF": "is0000F0000FF0"
  33. #"RX":
  34. # "ON": "i004015"
  35. # "OFF": "i004014"
  36. statTopic: "cmnd/SomeOtherLamp/POWER"
  37. #cmdTopic: ""
  38. "FAN_WZ":
  39. name: "Deckenventilator WZ"
  40. #"TX":
  41. # "STOP": "is00F01DF0FD10"
  42. # "LOW": "is00F01DF0FDD0"
  43. # "MED": "is00F01DF0FD0D"
  44. # "HIGH": "is00F01DF0FDFD"
  45. "RX":
  46. "STOP": "i04E46C"
  47. "LOW": "i04E468"
  48. "MED": "i04E462"
  49. "HIGH": "i04E466"
  50. #TX_interface: "MQTT"
  51. statTopic: "T5/WZ/Deckenventilator/level"
  52. cmdTopic: "T5/WZ/Deckenventilator/set"
  53. add_statTopics_on: [ {"on_payload": "STOP", "topic": "T5/WZ/Deckenventilator/setTimer", "payload": "OFF"},
  54. {"on_payload": "LOW", "topic": "T5/WZ/Deckenventilator/setTimer", "payload": "1H"}
  55. ]
  56. #add_statTopics: [ "test/123/bla", "test/234/blablu"]