This is the description of the MQTT API bindings for the Solid State Relay Bricklet. General information and technical specifications for the Solid State Relay Bricklet are summarized in its hardware description.
An installation guide for the MQTT API bindings is part of their general description.
The example code below is Public Domain (CC0 1.0).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Change XYZ to the UID of your Solid State Relay Bricklet
setup:
# Turn relay on/off 10 times with 1 second delay
for i in 0..4
wait for 1s
publish '{"state": true}' to tinkerforge/request/solid_state_relay_bricklet/XYZ/set_state
wait for 1s
publish '{"state": false}' to tinkerforge/request/solid_state_relay_bricklet/XYZ/set_state
endfor
|
All published payloads to and from the MQTT bindings are in JSON format.
If an error occures, the bindings publish a JSON object containing the error message as member _ERROR
.
It is published on the corresponding response topic: .../response/...
for .../request/...
and .../callback/...
for .../register/...
.
request/
solid_state_relay_bricklet/
<UID>/
set_state
¶Request: |
|
---|---|
Response: |
|
Sets the state of the relays true means on and false means off.
A running monoflop timer will be aborted if this function is called.
request/
solid_state_relay_bricklet/
<UID>/
get_state
¶Request: |
|
---|---|
Response: |
|
Returns the state of the relay, true means on and false means off.
request/
solid_state_relay_bricklet/
<UID>/
set_monoflop
¶Request: |
|
---|---|
Response: |
|
The first parameter is the desired state of the relay (true means on and false means off). The second parameter indicates the time that the relay should hold the state.
If this function is called with the parameters (true, 1500): The relay will turn on and in 1.5s it will turn off again.
A monoflop can be used as a failsafe mechanism. For example: Lets assume you have a RS485 bus and a Solid State Relay Bricklet connected to one of the slave stacks. You can now call this function every second, with a time parameter of two seconds. The relay will be on all the time. If now the RS485 connection is lost, the relay will turn off in at most two seconds.
request/
solid_state_relay_bricklet/
<UID>/
get_monoflop
¶Request: |
|
---|---|
Response: |
|
Returns the current state and the time as set by
request/solid_state_relay_bricklet/<UID>/set_monoflop
as well as the remaining time until the state flips.
If the timer is not running currently, the remaining time will be returned as 0.
request/
solid_state_relay_bricklet/
<UID>/
get_identity
¶Request: |
|
---|---|
Response: |
|
Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.
The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.
The device identifier numbers can be found here. If symbolic output is not disabled, the device identifier is mapped to the corresponding name in the format used in topics.
The display name contains the Solid State Relay's name in a human readable form.
Callbacks can be registered to receive
time critical or recurring data from the device. The registration is done
with the corresponding .../register/...
topic and an optional suffix.
This suffix can be used to deregister the callback later.
Note
Using callbacks for recurring events is always preferred compared to using getters. It will use less USB bandwidth and the latency will be a lot better, since there is no round trip time.
register/
solid_state_relay_bricklet/
<UID>/
monoflop_done
¶Register Request: |
|
---|---|
Callback Response: |
|
A callback can be registered for this event by publishing to the .../register/solid_state_relay_bricklet/<UID>/monoflop_done[/<SUFFIX>]
topic with the payload "true".
An added callback can be removed by publishing to the same topic with the payload "false".
To support multiple (de)registrations, e.g. for message filtering, an optional suffix can be used.
If the callback is triggered, a message with it's payload is published under the corresponding .../callback/solid_state_relay_bricklet/<UID>/monoflop_done[/<SUFFIX>]
topic for each registered suffix.
This callback is triggered whenever the monoflop timer reaches 0. The parameter is the current state of the relay (the state after the monoflop).