prefix1, prefix2, and prefix3 are hard coded. There should be a mechanism to provide user supplied prefixes, as this is sometimes necessary to fit tasmota devices into previously implemented topic hierarchies.
These constants currently appear in three places in the python scripts:
UI/dialogs/main.py:417: ) and possible_topic not in ("tele", "stat", "cmnd"):
mqtt.py:18: DEFAULT_PREFIXES = ["tele", "stat"]
tasmota/device.py:47: self.topic_prefixes = TopicPrefixes("cmnd", "stat", "tele")
This would be a new feature.
prefix1, prefix2, and prefix3 are hard coded. There should be a mechanism to provide user supplied prefixes, as this is sometimes necessary to fit tasmota devices into previously implemented topic hierarchies.
These constants currently appear in three places in the python scripts:
This would be a new feature.