Naming and Behavioral Conventions: Difference between revisions

From IoT with AME
Jump to navigation Jump to search
(Created page with "=Naming and Behavioral Conventions= MQTT lets you do with it want you want. After implementing a few devices I felt I would like a bit more order in the zoo. Some problems or...")
(No difference)

Revision as of 16:11, 1 July 2017

Naming and Behavioral Conventions

MQTT lets you do with it want you want. After implementing a few devices I felt I would like a bit more order in the zoo. Some problems or features are the same across devices, so why not handle them in a consistent way?

Every device needs to have a MQTT ID. It has a global status such as "connected" or "unresponsive". If it is connected via TCP, it will have an IP and, likely, MAC address. The installed software has a version.

This lead to the following topics:

  • MQTT-ID/status: The status of the device. "connected" if it is connected and communicating, "unresponsive" (via last will message) if it is not
  • MQTT-ID/version: The version of the specific devices.
  • MQTT-ID/ip: The IP address, determined by the DHCP server of the WLAN network
  • MQTT-ID/mac: The MAC address, determined by the WLAN chip
  • MQTT-ID/iotVersion: The version of my Arduino IoT framework

Example! My balcony device reports on connection:

  • topic "acbalcony/status", payload "connected"
  • topic "acbalcony/version", payload "1.021"
  • topic "acbalcony/ip", payload "192.168.0.24"
  • topic "acbalcony/mac", payload "ac:3f:35:bd:4f"
  • topic "acbalcony/iotVersion", payload "1.005"

A monitor subscribing to "+/status" receives the status messages of all connected devices. Neat! The IP and mac address reported may help me to configure the WLAN router (in example, if I want to always assign the same IP address to the same, mac-identified, device).

Often, devices are composed of capabilities that can be reused across devices. I am thinking of sensors for measuring temperature, air pressure, brightness, humidity, soil moisture, acceleration, location, direction etc. These capabilities possibly have input and output parameters, and the software has its own version which is independent of the device framework.

I am using the following topics. When the connection is made:

  • MQTT-ID/capablityID/version
  • MQTT-ID/capablityID/capa<n{2}>: A description of the input and output topics

During regular operations:

  • MQTT-ID/capablityID/<whatever!>: Depending on what the capability is able to do.

Example! The "power" capability of my power switch device number 3 supports the operation of one or more relays connected to digital ports. The reported capabilities when the connection is made are:

  • topic "acpower03/power/capa01", payload ">power/0:[0|1]"
  • topic "acpower03/power/capa02", payload "<power/out/0:[0|1]"

What does that mean? The capability reacts to messages specifying the number of the relay in the topic and "0" or "1" in the payload by turning relay 0 off or on (the mapping of relay numbers to digital ports is part of the configuration of the capability at compile time). The capability sends messages with the number of the relay in the topic and a payload of "0" or "1" to reflect the state of a relay. With that kind of feedback it is possible to determine whether the command was actually executed. It allows for reflecting state when a command has sent by somebody else. Capable MQTT clients do support this input/ output message scheme.

To switch on relay number 3, I send "acpower03/power/3", payload "1" and receive "acpower03/power/out/3", payload "1" soon thereafter. Or not, if something went wrong, but at least I know.

Another example! The "BMP280" sensor capability (an air pressure and temperature sensor) number 1 of my balcony device reports on air pressure and temperature

When the connection is made it reports:

  • topic "acbalcony"/bmp28001/version", payload "1.008"
  • topic "acbalcony"/bmp28001/capa01", payload "<temperature:<n.m>"
  • topic "acbalcony"/bmp28001/capa02", payload "<pressure:<n.m>"

Every 60 seconds it sends sensor readings:

  • topic "acbalcony"/bmp28001/temperature", payload "24.5"
  • topic "acbalcony"/bmp28001/pressure", payload "100463.26