-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MQTT JSON subscribe #198
base: master
Are you sure you want to change the base?
MQTT JSON subscribe #198
Conversation
@TrystanLea It is possible to get this merged? It's now been tested for quite a while and working well |
This is a cool feature. |
Will this be merged soon ? |
1) The emonhub configuration for mqtt has both sub and pub - change the if statement at line 256 to allow this 2) Add tx/# to the mqtt subscribe at line 260 3) rf sendving via nodeval has 5 topic parts not 4, fix line 304 (see below) 4) Reinstate if statements: if topic_parts[0] == self._settings["nodevar_format_basetopic"][:-1]: and if topic_parts[0] == self._settings["node_format_basetopic"][:-1]: to avoid incorrect "Payload format error" messages To transmit via MQTT, example for emonglcd: topic:emonhub/tx/0/values/msg payload:10,14,49,25,27,04,24,150,835,1600,502
Fix broken rf transmit behaviour in this version
@TrystanLea please can this be merged? |
It's only been waiting 18 months... |
Enable emonHub to subscribe to JSON MQTT topics, useful for integrating with zigbee2mqtt and Shelly WiFi sensors.
e.g
The above emonhub config subscribes to MQTT topic
zigbee2mqtt/temp
and decodes the JSON message{"battery":100,"humidity":72.23,"linkquality":116,"temperature":21.79,"voltage":3000}
which results in an input key calledtemp
and Inputs with battery, humidity etc.