Skip to content
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 doc #108

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions doc/mqtt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# mqtt interface

The mqtt interface serves two purposes.
* Data is made available at regular intervals.
* Defined commands can be sent to the device.

Every topic starts as subtopic of **ebus/**

These topics are available on every device.
|***topic*** |***description***
|:- |:-
|**device** |
|ebus/device |information about your device
|ebus/device/ebus |basic ebus adapter settings (Configration)
|ebus/device/firmware |details of installed firmware
|ebus/device/wifi |wifi details
|**counter** |
|ebus/arbitration |arbitration over common interface
|ebus/arbitration/won |details of won arbitration
|ebus/arbitration/lost|details of lost arbitration
|**commands** |
|ebus/config/restart |restarting of the device
|- |
|**EBUS_INTERNAL=1** |
|**output** |
|ebus/commands |list of installed commands
|ebus/value |received values of installed commands
|ebus/system |time and outdoor temperature of system (Service 07h 00h)
|ebus/nodes |decoded answer from an active sent identification telegram (Service 07h 04h)
|ebus/sent |values of 'send' command: subtopic=master; value=slave;
|ebus/raw |values of 'raw' printout: subtopic=master; value=slave;
|**counter** |
|ebus/messages |processed messages
|ebus/errors |errors of finite state machine
|ebus/resets |resets of finite state machine
|ebus/requets |bus requests (arbitration)
|**commands** |
|ebus/config/insert |insert new command
|ebus/config/remove |remove loaded command
|ebus/config/list |list loaded commands
|ebus/config/load |loading saved commands
|ebus/config/save |saving loaded commands
|ebus/config/wipe |wiping saved commands
|ebus/config/send |sending of given ebus command(s) once
|ebus/config/raw |enable/disable of raw data printout
|ebus/config/filter |filter for raw data printout
|**response** |
|ebus/config/loading |bytes of loaded commands
|ebus/config/saving |bytes of saved commands
|ebus/config/wiping |bytes of wiped commands
|ebus/conifg/error |message of last occurred error

52 changes: 52 additions & 0 deletions doc/mqtt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# mqtt interface

The mqtt interface serves two purposes.
* Data is made available at regular intervals.
* Defined commands can be sent to the device.

Every topic starts as subtopic of **ebus/**

These topics are available on every device.
|***topic*** |***description***
|:- |:-
|**device** |
|ebus/device |information about your device
|ebus/device/ebus |basic ebus adapter settings (Configration)
|ebus/device/firmware |details of installed firmware
|ebus/device/wifi |wifi details
|**counter** |
|ebus/arbitration |arbitration over common interface
|ebus/arbitration/won |details of won arbitration
|ebus/arbitration/lost|details of lost arbitration
|**commands** |
|ebus/config/restart |restarting of the device
|- |
|**EBUS_INTERNAL=1** |
|**output** |
|ebus/commands |list of installed commands
|ebus/value |received values of installed commands
|ebus/system |time and outdoor temperature of system (Service 07h 00h)
|ebus/nodes |decoded answer from an active sent identification telegram (Service 07h 04h)
|ebus/sent |values of 'send' command: subtopic=master; value=slave;
|ebus/raw |values of 'raw' printout: subtopic=master; value=slave;
|**counter** |
|ebus/messages |processed messages
|ebus/errors |errors of finite state machine
|ebus/resets |resets of finite state machine
|ebus/requets |bus requests (arbitration)
|**commands** |
|ebus/config/insert |insert new command
|ebus/config/remove |remove loaded command
|ebus/config/list |list loaded commands
|ebus/config/load |loading saved commands
|ebus/config/save |saving loaded commands
|ebus/config/wipe |wiping saved commands
|ebus/config/send |sending of given ebus command(s) once
|ebus/config/raw |enable/disable of raw data printout
|ebus/config/filter |filter for raw data printout
|**response** |
|ebus/config/loading |bytes of loaded commands
|ebus/config/saving |bytes of saved commands
|ebus/config/wiping |bytes of wiped commands
|ebus/conifg/error |message of last occurred error

Loading