Open
Conversation
Member
Author
|
@TrystanLea It is possible to get this merged? It's now been tested for quite a while and working well |
Contributor
|
This is a cool feature. |
Contributor
|
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
Member
Author
|
@TrystanLea please can this be merged? |
Contributor
It's only been waiting 18 months... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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/tempand decodes the JSON message{"battery":100,"humidity":72.23,"linkquality":116,"temperature":21.79,"voltage":3000}which results in an input key calledtempand Inputs with battery, humidity etc.