This is the description of the Modbus protocol for the Segment Display 4x7 Bricklet. General information and technical specifications for the Segment Display 4x7 Bricklet are summarized in its hardware description.
A general description of the Modbus protocol structure can be found here.
BrickletSegmentDisplay4x7.
set_segments
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
The 7-segment display can be set with bitmaps. Every bit controls one segment:
For example to set a "5" you would want to activate segments 0, 2, 3, 5 and 6. This is represented by the number 0b01101101 = 0x6d = 109.
The brightness can be set between 0 (dark) and 7 (bright). The colon parameter turns the colon of the display on or off.
BrickletSegmentDisplay4x7.
get_segments
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the segment, brightness and color data as set by
set_segments
.
BrickletSegmentDisplay4x7.
start_counter
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Starts a counter with the from value that counts to the to value with the each step incremented by increment. length is the pause between each increment.
Example: If you set from to 0, to to 100, increment to 1 and length to 1000, a counter that goes from 0 to 100 with one second pause between each increment will be started.
Using a negative increment allows to count backwards.
You can stop the counter at every time by calling set_segments
.
BrickletSegmentDisplay4x7.
get_counter_value
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the counter value that is currently shown on the display.
If there is no counter running a 0 will be returned.
BrickletSegmentDisplay4x7.
get_identity
¶Function ID: |
|
---|---|
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.
BrickletSegmentDisplay4x7.
CALLBACK_COUNTER_FINISHED
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered when the counter (see start_counter
) is
finished.