MQTT - Master Brick

This is the description of the MQTT API bindings for the Master Brick. General information and technical specifications for the Master Brick are summarized in its hardware description.

An installation guide for the MQTT API bindings is part of their general description.

Examples

The example code below is Public Domain (CC0 1.0).

Stack Status

Download (example-stack-status.txt)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Change XXYYZZ to the UID of your Master Brick

setup:
    # Get current stack voltage
    subscribe to tinkerforge/response/master_brick/XXYYZZ/get_stack_voltage
    publish '' to tinkerforge/request/master_brick/XXYYZZ/get_stack_voltage

    # Get current stack current
    subscribe to tinkerforge/response/master_brick/XXYYZZ/get_stack_current
    publish '' to tinkerforge/request/master_brick/XXYYZZ/get_stack_current

API

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/....

Basic Functions

request/master_brick/<UID>/get_stack_voltage
Request:
  • empty payload
Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

Returns the stack voltage. The stack voltage is the voltage that is supplied via the stack, i.e. it is given by a Step-Down or Step-Up Power Supply.

Note

It is not possible to measure voltages supplied per PoE or USB with this function.

request/master_brick/<UID>/get_stack_current
Request:
  • empty payload
Response:
  • current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1]

Returns the stack current. The stack current is the current that is drawn via the stack, i.e. it is given by a Step-Down or Step-Up Power Supply.

Note

It is not possible to measure the current drawn via PoE or USB with this function.

Advanced Functions

request/master_brick/<UID>/set_extension_type
Request:
  • extension – Type: int, Range: [0 to 1]
  • exttype – Type: int, Range: See symbols
Response:
  • no response

Writes the extension type to the EEPROM of a specified extension. The extension is either 0 or 1 (0 is the lower one, 1 is the upper one, if only one extension is present use 0).

Possible extension types:

Type Description
1 Chibi
2 RS485
3 WIFI
4 Ethernet
5 WIFI 2.0

The extension type is already set when bought and it can be set with the Brick Viewer, it is unlikely that you need this function.

The following symbols are available for this function:

For exttype:

  • "chibi" = 1
  • "rs485" = 2
  • "wifi" = 3
  • "ethernet" = 4
  • "wifi2" = 5
request/master_brick/<UID>/get_extension_type
Request:
  • extension – Type: int, Range: [0 to 1]
Response:
  • exttype – Type: int, Range: See symbols

Returns the type for a given extension as set by request/master_brick/<UID>/set_extension_type.

The following symbols are available for this function:

For exttype:

  • "chibi" = 1
  • "rs485" = 2
  • "wifi" = 3
  • "ethernet" = 4
  • "wifi2" = 5
request/master_brick/<UID>/is_chibi_present
Request:
  • empty payload
Response:
  • present – Type: bool

Returns true if the Master Brick is at position 0 in the stack and a Chibi Extension is available.

request/master_brick/<UID>/set_chibi_address
Request:
  • address – Type: int, Range: [1 to 255]
Response:
  • no response

Sets the address belonging to the Chibi Extension.

It is possible to set the address with the Brick Viewer and it will be saved in the EEPROM of the Chibi Extension, it does not have to be set on every startup.

request/master_brick/<UID>/get_chibi_address
Request:
  • empty payload
Response:
  • address – Type: int, Range: [1 to 255]

Returns the address as set by request/master_brick/<UID>/set_chibi_address.

request/master_brick/<UID>/set_chibi_master_address
Request:
  • address – Type: int, Range: [1 to 255]
Response:
  • no response

Sets the address of the Chibi Master. This address is used if the Chibi Extension is used as slave (i.e. it does not have a USB connection).

It is possible to set the address with the Brick Viewer and it will be saved in the EEPROM of the Chibi Extension, it does not have to be set on every startup.

request/master_brick/<UID>/get_chibi_master_address
Request:
  • empty payload
Response:
  • address – Type: int, Range: [1 to 255]

Returns the address as set by request/master_brick/<UID>/set_chibi_master_address.

request/master_brick/<UID>/set_chibi_slave_address
Request:
  • num – Type: int, Range: [0 to 254]
  • address – Type: int, Range: [0 to 255]
Response:
  • no response

Sets up to 254 slave addresses. 0 has a special meaning, it is used as list terminator and not allowed as normal slave address. The address numeration (via num parameter) has to be used ascending from 0. For example: If you use the Chibi Extension in Master mode (i.e. the stack has an USB connection) and you want to talk to three other Chibi stacks with the slave addresses 17, 23, and 42, you should call with (0, 17), (1, 23), (2, 42) and (3, 0). The last call with (3, 0) is a list terminator and indicates that the Chibi slave address list contains 3 addresses in this case.

It is possible to set the addresses with the Brick Viewer, that will take care of correct address numeration and list termination.

The slave addresses will be saved in the EEPROM of the Chibi Extension, they don't have to be set on every startup.

request/master_brick/<UID>/get_chibi_slave_address
Request:
  • num – Type: int, Range: [0 to 254]
Response:
  • address – Type: int, Range: [0 to 255]

Returns the slave address for a given num as set by request/master_brick/<UID>/set_chibi_slave_address.

request/master_brick/<UID>/get_chibi_signal_strength
Request:
  • empty payload
Response:
  • signal_strength – Type: int, Unit: 1 dB, Range: [0 to 255]

Returns the signal strength in dBm. The signal strength updates every time a packet is received.

request/master_brick/<UID>/get_chibi_error_log
Request:
  • empty payload
Response:
  • underrun – Type: int, Range: [0 to 216 - 1]
  • crc_error – Type: int, Range: [0 to 216 - 1]
  • no_ack – Type: int, Range: [0 to 216 - 1]
  • overflow – Type: int, Range: [0 to 216 - 1]

Returns underrun, CRC error, no ACK and overflow error counts of the Chibi communication. If these errors start rising, it is likely that either the distance between two Chibi stacks is becoming too big or there are interferences.

request/master_brick/<UID>/set_chibi_frequency
Request:
  • frequency – Type: int, Range: See symbols
Response:
  • no response

Sets the Chibi frequency range for the Chibi Extension. Possible values are:

Type Description
0 OQPSK 868MHz (Europe)
1 OQPSK 915MHz (US)
2 OQPSK 780MHz (China)
3 BPSK40 915MHz

It is possible to set the frequency with the Brick Viewer and it will be saved in the EEPROM of the Chibi Extension, it does not have to be set on every startup.

The following symbols are available for this function:

For frequency:

  • "oqpsk_868_mhz" = 0
  • "oqpsk_915_mhz" = 1
  • "oqpsk_780_mhz" = 2
  • "bpsk40_915_mhz" = 3
request/master_brick/<UID>/get_chibi_frequency
Request:
  • empty payload
Response:
  • frequency – Type: int, Range: See symbols

Returns the frequency value as set by request/master_brick/<UID>/set_chibi_frequency.

The following symbols are available for this function:

For frequency:

  • "oqpsk_868_mhz" = 0
  • "oqpsk_915_mhz" = 1
  • "oqpsk_780_mhz" = 2
  • "bpsk40_915_mhz" = 3
request/master_brick/<UID>/set_chibi_channel
Request:
  • channel – Type: int, Range: ?
Response:
  • no response

Sets the channel used by the Chibi Extension. Possible channels are different for different frequencies:

Frequency Possible Channels
OQPSK 868MHz (Europe) 0
OQPSK 915MHz (US) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
OQPSK 780MHz (China) 0, 1, 2, 3
BPSK40 915MHz 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

It is possible to set the channel with the Brick Viewer and it will be saved in the EEPROM of the Chibi Extension, it does not have to be set on every startup.

request/master_brick/<UID>/get_chibi_channel
Request:
  • empty payload
Response:
  • channel – Type: int, Range: ?

Returns the channel as set by request/master_brick/<UID>/set_chibi_channel.

request/master_brick/<UID>/is_rs485_present
Request:
  • empty payload
Response:
  • present – Type: bool

Returns true if the Master Brick is at position 0 in the stack and a RS485 Extension is available.

request/master_brick/<UID>/set_rs485_address
Request:
  • address – Type: int, Range: [0 to 255]
Response:
  • no response

Sets the address (0-255) belonging to the RS485 Extension.

Set to 0 if the RS485 Extension should be the RS485 Master (i.e. connected to a PC via USB).

It is possible to set the address with the Brick Viewer and it will be saved in the EEPROM of the RS485 Extension, it does not have to be set on every startup.

request/master_brick/<UID>/get_rs485_address
Request:
  • empty payload
Response:
  • address – Type: int, Range: [0 to 255]

Returns the address as set by request/master_brick/<UID>/set_rs485_address.

request/master_brick/<UID>/set_rs485_slave_address
Request:
  • num – Type: int, Range: [0 to 255]
  • address – Type: int, Range: [0 to 255]
Response:
  • no response

Sets up to 255 slave addresses. Valid addresses are in range 1-255. 0 has a special meaning, it is used as list terminator and not allowed as normal slave address. The address numeration (via num parameter) has to be used ascending from 0. For example: If you use the RS485 Extension in Master mode (i.e. the stack has an USB connection) and you want to talk to three other RS485 stacks with the addresses 17, 23, and 42, you should call with (0, 17), (1, 23), (2, 42) and (3, 0). The last call with (3, 0) is a list terminator and indicates that the RS485 slave address list contains 3 addresses in this case.

It is possible to set the addresses with the Brick Viewer, that will take care of correct address numeration and list termination.

The slave addresses will be saved in the EEPROM of the Chibi Extension, they don't have to be set on every startup.

request/master_brick/<UID>/get_rs485_slave_address
Request:
  • num – Type: int, Range: [0 to 255]
Response:
  • address – Type: int, Range: [0 to 255]

Returns the slave address for a given num as set by request/master_brick/<UID>/set_rs485_slave_address.

request/master_brick/<UID>/get_rs485_error_log
Request:
  • empty payload
Response:
  • crc_error – Type: int, Range: [0 to 216 - 1]

Returns CRC error counts of the RS485 communication. If this counter starts rising, it is likely that the distance between the RS485 nodes is too big or there is some kind of interference.

request/master_brick/<UID>/set_rs485_configuration
Request:
  • speed – Type: int, Unit: 1 Bd, Range: [0 to 232 - 1]
  • parity – Type: char, Range: See symbols
  • stopbits – Type: int, Range: [1 to 2]
Response:
  • no response

Sets the configuration of the RS485 Extension. The Master Brick will try to match the given baud rate as exactly as possible. The maximum recommended baud rate is 2000000 (2MBd). Possible values for parity are 'n' (none), 'e' (even) and 'o' (odd).

If your RS485 is unstable (lost messages etc.), the first thing you should try is to decrease the speed. On very large bus (e.g. 1km), you probably should use a value in the range of 100000 (100kBd).

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

The following symbols are available for this function:

For parity:

  • "none" = "n"
  • "even" = "e"
  • "odd" = "o"
request/master_brick/<UID>/get_rs485_configuration
Request:
  • empty payload
Response:
  • speed – Type: int, Unit: 1 Bd, Range: [0 to 232 - 1]
  • parity – Type: char, Range: See symbols
  • stopbits – Type: int, Range: [1 to 2]

Returns the configuration as set by request/master_brick/<UID>/set_rs485_configuration.

The following symbols are available for this function:

For parity:

  • "none" = "n"
  • "even" = "e"
  • "odd" = "o"
request/master_brick/<UID>/is_wifi_present
Request:
  • empty payload
Response:
  • present – Type: bool

Returns true if the Master Brick is at position 0 in the stack and a WIFI Extension is available.

request/master_brick/<UID>/set_wifi_configuration
Request:
  • ssid – Type: string, Length: up to 32
  • connection – Type: int, Range: See symbols
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223
Response:
  • no response

Sets the configuration of the WIFI Extension. The ssid can have a max length of 32 characters. Possible values for connection are:

Value Description
0 DHCP
1 Static IP
2 Access Point: DHCP
3 Access Point: Static IP
4 Ad Hoc: DHCP
5 Ad Hoc: Static IP

If you set connection to one of the static IP options then you have to supply ip, subnet_mask and gateway as an array of size 4 (first element of the array is the least significant byte of the address). If connection is set to one of the DHCP options then ip, subnet_mask and gateway are ignored, you can set them to 0.

The last parameter is the port that your program will connect to.

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the WIFI configuration.

The following symbols are available for this function:

For connection:

  • "dhcp" = 0
  • "static_ip" = 1
  • "access_point_dhcp" = 2
  • "access_point_static_ip" = 3
  • "ad_hoc_dhcp" = 4
  • "ad_hoc_static_ip" = 5
request/master_brick/<UID>/get_wifi_configuration
Request:
  • empty payload
Response:
  • ssid – Type: string, Length: up to 32
  • connection – Type: int, Range: See symbols
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223

Returns the configuration as set by request/master_brick/<UID>/set_wifi_configuration.

The following symbols are available for this function:

For connection:

  • "dhcp" = 0
  • "static_ip" = 1
  • "access_point_dhcp" = 2
  • "access_point_static_ip" = 3
  • "ad_hoc_dhcp" = 4
  • "ad_hoc_static_ip" = 5
request/master_brick/<UID>/set_wifi_encryption
Request:
  • encryption – Type: int, Range: See symbols
  • key – Type: string, Length: up to 50
  • key_index – Type: int, Range: [1 to 4]
  • eap_options – Type: int, Range: See symbols
  • ca_certificate_length – Type: int, Unit: 1 B, Range: [0 to 1312]
  • client_certificate_length – Type: int, Unit: 1 B, Range: [0 to 1312]
  • private_key_length – Type: int, Unit: 1 B, Range: [0 to 4320]
Response:
  • no response

Sets the encryption of the WIFI Extension. The first parameter is the type of the encryption. Possible values are:

Value Description
0 WPA/WPA2
1 WPA Enterprise (EAP-FAST, EAP-TLS, EAP-TTLS, PEAP)
2 WEP
3 No Encryption

The key has a max length of 50 characters and is used if encryption is set to 0 or 2 (WPA/WPA2 or WEP). Otherwise the value is ignored.

For WPA/WPA2 the key has to be at least 8 characters long. If you want to set a key with more than 50 characters, see request/master_brick/<UID>/set_long_wifi_key.

For WEP the key has to be either 10 or 26 hexadecimal digits long. It is possible to set the WEP key_index (1-4). If you don't know your key_index, it is likely 1.

If you choose WPA Enterprise as encryption, you have to set eap_options and the length of the certificates (for other encryption types these parameters are ignored). The certificates themselves can be set with request/master_brick/<UID>/set_wifi_certificate. eap_options consist of the outer authentication (bits 1-2), inner authentication (bit 3) and certificate type (bits 4-5):

Option Bits Description
outer authentication 1-2 0=EAP-FAST, 1=EAP-TLS, 2=EAP-TTLS, 3=EAP-PEAP
inner authentication 3 0=EAP-MSCHAP, 1=EAP-GTC
certificate type 4-5 0=CA Certificate, 1=Client Certificate, 2=Private Key

Example for EAP-TTLS + EAP-GTC + Private Key: option = 2 | (1 << 2) | (2 << 3).

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the Wi-Fi encryption.

The following symbols are available for this function:

For encryption:

  • "wpa_wpa2" = 0
  • "wpa_enterprise" = 1
  • "wep" = 2
  • "no_encryption" = 3

For eap_options:

  • "outer_auth_eap_fast" = 0
  • "outer_auth_eap_tls" = 1
  • "outer_auth_eap_ttls" = 2
  • "outer_auth_eap_peap" = 3
  • "inner_auth_eap_mschap" = 0
  • "inner_auth_eap_gtc" = 4
  • "cert_type_ca_cert" = 0
  • "cert_type_client_cert" = 8
  • "cert_type_private_key" = 16
request/master_brick/<UID>/get_wifi_encryption
Request:
  • empty payload
Response:
  • encryption – Type: int, Range: See symbols
  • key – Type: string, Length: up to 50
  • key_index – Type: int, Range: [1 to 4]
  • eap_options – Type: int, Range: See symbols
  • ca_certificate_length – Type: int, Range: [0 to 216 - 1]
  • client_certificate_length – Type: int, Range: [0 to 216 - 1]
  • private_key_length – Type: int, Range: [0 to 216 - 1]

Returns the encryption as set by request/master_brick/<UID>/set_wifi_encryption.

Note

Since Master Brick Firmware version 2.4.4 the key is not returned anymore.

The following symbols are available for this function:

For encryption:

  • "wpa_wpa2" = 0
  • "wpa_enterprise" = 1
  • "wep" = 2
  • "no_encryption" = 3

For eap_options:

  • "outer_auth_eap_fast" = 0
  • "outer_auth_eap_tls" = 1
  • "outer_auth_eap_ttls" = 2
  • "outer_auth_eap_peap" = 3
  • "inner_auth_eap_mschap" = 0
  • "inner_auth_eap_gtc" = 4
  • "cert_type_ca_cert" = 0
  • "cert_type_client_cert" = 8
  • "cert_type_private_key" = 16
request/master_brick/<UID>/get_wifi_status
Request:
  • empty payload
Response:
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • bssid – Type: [int, ...], Length: 6, Range: [0 to 255]
  • channel – Type: int, Range: ?
  • rssi – Type: int, Range: [-215 to 215 - 1]
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • rx_count – Type: int, Range: [0 to 232 - 1]
  • tx_count – Type: int, Range: [0 to 232 - 1]
  • state – Type: int, Range: See symbols

Returns the status of the WIFI Extension. The state is updated automatically, all of the other parameters are updated on startup and every time request/master_brick/<UID>/refresh_wifi_status is called.

Possible states are:

State Description
0 Disassociated
1 Associated
2 Associating
3 Error
255 Not initialized yet

The following symbols are available for this function:

For state:

  • "disassociated" = 0
  • "associated" = 1
  • "associating" = 2
  • "error" = 3
  • "not_initialized_yet" = 255
request/master_brick/<UID>/refresh_wifi_status
Request:
  • empty payload
Response:
  • no response

Refreshes the Wi-Fi status (see request/master_brick/<UID>/get_wifi_status). To read the status of the Wi-Fi module, the Master Brick has to change from data mode to command mode and back. This transaction and the readout itself is unfortunately time consuming. This means, that it might take some ms until the stack with attached WIFI Extension reacts again after this function is called.

request/master_brick/<UID>/set_wifi_certificate
Request:
  • index – Type: int, Range: [0 to 1311, 10000 to 11311, 20000 to 24319, 65534 to 216 - 1]
  • data – Type: [int, ...], Length: 32, Range: [0 to 255]
  • data_length – Type: int, Unit: 1 B, Range: [0 to 32]
Response:
  • no response

This function is used to set the certificate as well as password and username for WPA Enterprise. To set the username use index 0xFFFF, to set the password use index 0xFFFE. The max length of username and password is 32.

The certificate is written in chunks of size 32 and the index is used as the index of the chunk. data_length should nearly always be 32. Only the last chunk can have a length that is not equal to 32.

The starting index of the CA Certificate is 0, of the Client Certificate 10000 and for the Private Key 20000. Maximum sizes are 1312, 1312 and 4320 byte respectively.

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after uploading the certificate.

It is recommended to use the Brick Viewer to set the certificate, username and password.

request/master_brick/<UID>/get_wifi_certificate
Request:
  • index – Type: int, Range: [0 to 1311, 10000 to 11311, 20000 to 24319, 65534 to 216 - 1]
Response:
  • data – Type: [int, ...], Length: 32, Range: [0 to 255]
  • data_length – Type: int, Range: [0 to 32]

Returns the certificate for a given index as set by request/master_brick/<UID>/set_wifi_certificate.

request/master_brick/<UID>/set_wifi_power_mode
Request:
  • mode – Type: int, Range: See symbols, Default: 0
Response:
  • no response

Sets the power mode of the WIFI Extension. Possible modes are:

Mode Description
0 Full Speed (high power consumption, high throughput)
1 Low Power (low power consumption, low throughput)

The following symbols are available for this function:

For mode:

  • "full_speed" = 0
  • "low_power" = 1
request/master_brick/<UID>/get_wifi_power_mode
Request:
  • empty payload
Response:
  • mode – Type: int, Range: See symbols, Default: 0

Returns the power mode as set by request/master_brick/<UID>/set_wifi_power_mode.

The following symbols are available for this function:

For mode:

  • "full_speed" = 0
  • "low_power" = 1
request/master_brick/<UID>/get_wifi_buffer_info
Request:
  • empty payload
Response:
  • overflow – Type: int, Range: [0 to 232 - 1]
  • low_watermark – Type: int, Unit: 1 B, Range: [0 to 1500]
  • used – Type: int, Unit: 1 B, Range: [0 to 1500]

Returns informations about the Wi-Fi receive buffer. The Wi-Fi receive buffer has a max size of 1500 byte and if data is transfered too fast, it might overflow.

The return values are the number of overflows, the low watermark (i.e. the smallest number of bytes that were free in the buffer) and the bytes that are currently used.

You should always try to keep the buffer empty, otherwise you will have a permanent latency. A good rule of thumb is, that you can transfer 1000 messages per second without problems.

Try to not send more then 50 messages at a time without any kind of break between them.

request/master_brick/<UID>/set_wifi_regulatory_domain
Request:
  • domain – Type: int, Range: See symbols, Default: 1
Response:
  • no response

Sets the regulatory domain of the WIFI Extension. Possible domains are:

Domain Description
0 FCC: Channel 1-11 (N/S America, Australia, New Zealand)
1 ETSI: Channel 1-13 (Europe, Middle East, Africa)
2 TELEC: Channel 1-14 (Japan)

The following symbols are available for this function:

For domain:

  • "channel_1to11" = 0
  • "channel_1to13" = 1
  • "channel_1to14" = 2
request/master_brick/<UID>/get_wifi_regulatory_domain
Request:
  • empty payload
Response:
  • domain – Type: int, Range: See symbols, Default: 1

Returns the regulatory domain as set by request/master_brick/<UID>/set_wifi_regulatory_domain.

The following symbols are available for this function:

For domain:

  • "channel_1to11" = 0
  • "channel_1to13" = 1
  • "channel_1to14" = 2
request/master_brick/<UID>/get_usb_voltage
Request:
  • empty payload
Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

Returns the USB voltage. Does not work with hardware version 2.1 or newer.

request/master_brick/<UID>/set_long_wifi_key
Request:
  • key – Type: string, Length: up to 64
Response:
  • no response

Sets a long Wi-Fi key (up to 63 chars, at least 8 chars) for WPA encryption. This key will be used if the key in request/master_brick/<UID>/set_wifi_encryption is set to "-". In the old protocol, a payload of size 63 was not possible, so the maximum key length was 50 chars.

With the new protocol this is possible, since we didn't want to break API, this function was added additionally.

New in version 2.0.2 (Firmware).

request/master_brick/<UID>/get_long_wifi_key
Request:
  • empty payload
Response:
  • key – Type: string, Length: up to 64

Returns the encryption key as set by request/master_brick/<UID>/set_long_wifi_key.

Note

Since Master Brick firmware version 2.4.4 the key is not returned anymore.

New in version 2.0.2 (Firmware).

request/master_brick/<UID>/set_wifi_hostname
Request:
  • hostname – Type: string, Length: up to 16
Response:
  • no response

Sets the hostname of the WIFI Extension. The hostname will be displayed by access points as the hostname in the DHCP clients table.

Setting an empty String will restore the default hostname.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_wifi_hostname
Request:
  • empty payload
Response:
  • hostname – Type: string, Length: up to 16

Returns the hostname as set by request/master_brick/<UID>/set_wifi_hostname.

An empty String means, that the default hostname is used.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/is_ethernet_present
Request:
  • empty payload
Response:
  • present – Type: bool

Returns true if the Master Brick is at position 0 in the stack and an Ethernet Extension is available.

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/set_ethernet_configuration
Request:
  • connection – Type: int, Range: See symbols
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223
Response:
  • no response

Sets the configuration of the Ethernet Extension. Possible values for connection are:

Value Description
0 DHCP
1 Static IP

If you set connection to static IP options then you have to supply ip, subnet_mask and gateway as an array of size 4 (first element of the array is the least significant byte of the address). If connection is set to the DHCP options then ip, subnet_mask and gateway are ignored, you can set them to 0.

The last parameter is the port that your program will connect to.

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the Ethernet configuration.

The following symbols are available for this function:

For connection:

  • "dhcp" = 0
  • "static_ip" = 1

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/get_ethernet_configuration
Request:
  • empty payload
Response:
  • connection – Type: int, Range: See symbols
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223

Returns the configuration as set by request/master_brick/<UID>/set_ethernet_configuration.

The following symbols are available for this function:

For connection:

  • "dhcp" = 0
  • "static_ip" = 1

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/get_ethernet_status
Request:
  • empty payload
Response:
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • rx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • tx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • hostname – Type: string, Length: up to 32

Returns the status of the Ethernet Extension.

mac_address, ip, subnet_mask and gateway are given as an array. The first element of the array is the least significant byte of the address.

rx_count and tx_count are the number of bytes that have been received/send since last restart.

hostname is the currently used hostname.

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/set_ethernet_hostname
Request:
  • hostname – Type: string, Length: up to 32
Response:
  • no response

Sets the hostname of the Ethernet Extension. The hostname will be displayed by access points as the hostname in the DHCP clients table.

Setting an empty String will restore the default hostname.

The current hostname can be discovered with request/master_brick/<UID>/get_ethernet_status.

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/set_ethernet_mac_address
Request:
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
Response:
  • no response

Sets the MAC address of the Ethernet Extension. The Ethernet Extension should come configured with a valid MAC address, that is also written on a sticker of the extension itself.

The MAC address can be read out again with request/master_brick/<UID>/get_ethernet_status.

New in version 2.1.0 (Firmware).

request/master_brick/<UID>/set_ethernet_websocket_configuration
Request:
  • sockets – Type: int, Range: [0 to 7], Default: 3
  • port – Type: int, Range: [0 to 216 - 1], Default: 4280
Response:
  • no response

Sets the Ethernet WebSocket configuration. The first parameter sets the number of socket connections that are reserved for WebSockets. The range is 0-7. The connections are shared with the plain sockets. Example: If you set the connections to 3, there will be 3 WebSocket and 4 plain socket connections available.

The second parameter is the port for the WebSocket connections. The port can not be the same as the port for the plain socket connections.

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the Ethernet configuration.

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/get_ethernet_websocket_configuration
Request:
  • empty payload
Response:
  • sockets – Type: int, Range: [0 to 7], Default: 3
  • port – Type: int, Range: [0 to 216 - 1], Default: 4280

Returns the configuration as set by request/master_brick/<UID>/set_ethernet_configuration.

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/set_ethernet_authentication_secret
Request:
  • secret – Type: string, Length: up to 64, Default: ""
Response:
  • no response

Sets the Ethernet authentication secret. The secret can be a string of up to 64 characters. An empty string disables the authentication.

See the authentication tutorial for more information.

The secret is stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the Ethernet authentication secret.

The default value is an empty string (authentication disabled).

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/get_ethernet_authentication_secret
Request:
  • empty payload
Response:
  • secret – Type: string, Length: up to 64, Default: ""

Returns the authentication secret as set by request/master_brick/<UID>/set_ethernet_authentication_secret.

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/set_wifi_authentication_secret
Request:
  • secret – Type: string, Length: up to 64, Default: ""
Response:
  • no response

Sets the WIFI authentication secret. The secret can be a string of up to 64 characters. An empty string disables the authentication.

See the authentication tutorial for more information.

The secret is stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

It is recommended to use the Brick Viewer to set the WIFI authentication secret.

The default value is an empty string (authentication disabled).

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/get_wifi_authentication_secret
Request:
  • empty payload
Response:
  • secret – Type: string, Length: up to 64, Default: ""

Returns the authentication secret as set by request/master_brick/<UID>/set_wifi_authentication_secret.

New in version 2.2.0 (Firmware).

request/master_brick/<UID>/get_connection_type
Request:
  • empty payload
Response:
  • connection_type – Type: int, Range: See symbols

Returns the type of the connection over which this function was called.

The following symbols are available for this function:

For connection_type:

  • "none" = 0
  • "usb" = 1
  • "spi_stack" = 2
  • "chibi" = 3
  • "rs485" = 4
  • "wifi" = 5
  • "ethernet" = 6
  • "wifi2" = 7

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/is_wifi2_present
Request:
  • empty payload
Response:
  • present – Type: bool

Returns true if the Master Brick is at position 0 in the stack and a WIFI Extension 2.0 is available.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/start_wifi2_bootloader
Request:
  • empty payload
Response:
  • result – Type: int, Range: [-128 to 127]

Starts the bootloader of the WIFI Extension 2.0. Returns 0 on success. Afterwards the request/master_brick/<UID>/write_wifi2_serial_port and request/master_brick/<UID>/read_wifi2_serial_port functions can be used to communicate with the bootloader to flash a new firmware.

The bootloader should only be started over a USB connection. It cannot be started over a WIFI2 connection, see the request/master_brick/<UID>/get_connection_type function.

It is recommended to use the Brick Viewer to update the firmware of the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/write_wifi2_serial_port
Request:
  • data – Type: [int, ...], Length: 60, Range: [0 to 255]
  • length – Type: int, Unit: 1 B, Range: [0 to 60]
Response:
  • result – Type: int, Range: [-128 to 127]

Writes up to 60 bytes (number of bytes to be written specified by length) to the serial port of the bootloader of the WIFI Extension 2.0. Returns 0 on success.

Before this function can be used the bootloader has to be started using the request/master_brick/<UID>/start_wifi2_bootloader function.

It is recommended to use the Brick Viewer to update the firmware of the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/read_wifi2_serial_port
Request:
  • length – Type: int, Range: [0 to 255]
Response:
  • data – Type: [int, ...], Length: 60, Range: [0 to 60]
  • result – Type: int, Range: [0 to 255]

Reads up to 60 bytes (number of bytes to be read specified by length) from the serial port of the bootloader of the WIFI Extension 2.0. Returns the number of actually read bytes.

Before this function can be used the bootloader has to be started using the request/master_brick/<UID>/start_wifi2_bootloader function.

It is recommended to use the Brick Viewer to update the firmware of the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_authentication_secret
Request:
  • secret – Type: string, Length: up to 64
Response:
  • no response

Sets the WIFI authentication secret. The secret can be a string of up to 64 characters. An empty string disables the authentication. The default value is an empty string (authentication disabled).

See the authentication tutorial for more information.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_authentication_secret
Request:
  • empty payload
Response:
  • secret – Type: string, Length: up to 64

Returns the WIFI authentication secret as set by request/master_brick/<UID>/set_wifi2_authentication_secret.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_configuration
Request:
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223
  • websocket_port – Type: int, Range: [0 to 216 - 1], Default: 4280
  • website_port – Type: int, Range: [0 to 216 - 1], Default: 80
  • phy_mode – Type: int, Range: See symbols
  • sleep_mode – Type: int, Range: [0 to 255]
  • website – Type: int, Range: [0 to 255]
Response:
  • no response

Sets the general configuration of the WIFI Extension 2.0.

The port parameter sets the port number that your programm will connect to.

The websocket_port parameter sets the WebSocket port number that your JavaScript programm will connect to.

The website_port parameter sets the port number for the website of the WIFI Extension 2.0.

The phy_mode parameter sets the specific wireless network mode to be used. Possible values are B, G and N.

The sleep_mode parameter is currently unused.

The website parameter is used to enable or disable the web interface of the WIFI Extension 2.0, which is available from firmware version 2.0.1. Note that, for firmware version 2.0.3 and older, to disable the the web interface the website_port parameter must be set to 1 and greater than 1 to enable the web interface. For firmware version 2.0.4 and later, setting this parameter to 1 will enable the web interface and setting it to 0 will disable the web interface.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

The following symbols are available for this function:

For phy_mode:

  • "b" = 0
  • "g" = 1
  • "n" = 2

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_configuration
Request:
  • empty payload
Response:
  • port – Type: int, Range: [0 to 216 - 1], Default: 4223
  • websocket_port – Type: int, Range: [0 to 216 - 1], Default: 4280
  • website_port – Type: int, Range: [0 to 216 - 1], Default: 80
  • phy_mode – Type: int, Range: See symbols
  • sleep_mode – Type: int, Range: [0 to 255]
  • website – Type: int, Range: [0 to 255]

Returns the general configuration as set by request/master_brick/<UID>/set_wifi2_configuration.

The following symbols are available for this function:

For phy_mode:

  • "b" = 0
  • "g" = 1
  • "n" = 2

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_status
Request:
  • empty payload
Response:
  • client_enabled – Type: bool
  • client_status – Type: int, Range: See symbols
  • client_ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • client_subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • client_gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • client_mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • client_rx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • client_tx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • client_rssi – Type: int, Range: [-128 to 127]
  • ap_enabled – Type: bool
  • ap_ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • ap_subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • ap_gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • ap_mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • ap_rx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • ap_tx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • ap_connected_count – Type: int, Range: [0 to 255]

Returns the client and access point status of the WIFI Extension 2.0.

The following symbols are available for this function:

For client_status:

  • "idle" = 0
  • "connecting" = 1
  • "wrong_password" = 2
  • "no_ap_found" = 3
  • "connect_failed" = 4
  • "got_ip" = 5
  • "unknown" = 255

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_client_configuration
Request:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • bssid – Type: [int, ...], Length: 6, Range: [0 to 255]
Response:
  • no response

Sets the client specific configuration of the WIFI Extension 2.0.

The enable parameter enables or disables the client part of the WIFI Extension 2.0.

The ssid parameter sets the SSID (up to 32 characters) of the access point to connect to.

If the ip parameter is set to all zero then subnet_mask and gateway parameters are also set to all zero and DHCP is used for IP address configuration. Otherwise those three parameters can be used to configure a static IP address. The default configuration is DHCP.

If the mac_address parameter is set to all zero then the factory MAC address is used. Otherwise this parameter can be used to set a custom MAC address.

If the bssid parameter is set to all zero then WIFI Extension 2.0 will connect to any access point that matches the configured SSID. Otherwise this parameter can be used to make the WIFI Extension 2.0 only connect to an access point if SSID and BSSID match.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_client_configuration
Request:
  • empty payload
Response:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
  • bssid – Type: [int, ...], Length: 6, Range: [0 to 255]

Returns the client configuration as set by request/master_brick/<UID>/set_wifi2_client_configuration.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_client_hostname
Request:
  • hostname – Type: string, Length: up to 32
Response:
  • no response

Sets the client hostname (up to 32 characters) of the WIFI Extension 2.0. The hostname will be displayed by access points as the hostname in the DHCP clients table.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_client_hostname
Request:
  • empty payload
Response:
  • hostname – Type: string, Length: up to 32

Returns the client hostname as set by request/master_brick/<UID>/set_wifi2_client_hostname.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_client_password
Request:
  • password – Type: string, Length: up to 64
Response:
  • no response

Sets the client password (up to 63 chars) for WPA/WPA2 encryption.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_client_password
Request:
  • empty payload
Response:
  • password – Type: string, Length: up to 64

Returns the client password as set by request/master_brick/<UID>/set_wifi2_client_password.

Note

Since WIFI Extension 2.0 firmware version 2.1.3 the password is not returned anymore.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_ap_configuration
Request:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255], Default: [0,0,0,0]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • encryption – Type: int, Range: See symbols, Default: 4
  • hidden – Type: bool, Default: false
  • channel – Type: int, Range: [0 to 255], Default: 1
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]
Response:
  • no response

Sets the access point specific configuration of the WIFI Extension 2.0.

The enable parameter enables or disables the access point part of the WIFI Extension 2.0.

The ssid parameter sets the SSID (up to 32 characters) of the access point.

If the ip parameter is set to all zero then subnet_mask and gateway parameters are also set to all zero and DHCP is used for IP address configuration. Otherwise those three parameters can be used to configure a static IP address. The default configuration is DHCP.

The encryption parameter sets the encryption mode to be used. Possible values are Open (no encryption), WEP or WPA/WPA2 PSK. Use the request/master_brick/<UID>/set_wifi2_ap_password function to set the encryption password.

The hidden parameter makes the access point hide or show its SSID.

The channel parameter sets the channel (1 to 13) of the access point.

If the mac_address parameter is set to all zero then the factory MAC address is used. Otherwise this parameter can be used to set a custom MAC address.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

The following symbols are available for this function:

For encryption:

  • "open" = 0
  • "wep" = 1
  • "wpa_psk" = 2
  • "wpa2_psk" = 3
  • "wpa_wpa2_psk" = 4

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_ap_configuration
Request:
  • empty payload
Response:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255], Default: [0,0,0,0]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • encryption – Type: int, Range: See symbols, Default: 4
  • hidden – Type: bool, Default: false
  • channel – Type: int, Range: [0 to 255], Default: 1
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]

Returns the access point configuration as set by request/master_brick/<UID>/set_wifi2_ap_configuration.

The following symbols are available for this function:

For encryption:

  • "open" = 0
  • "wep" = 1
  • "wpa_psk" = 2
  • "wpa2_psk" = 3
  • "wpa_wpa2_psk" = 4

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_ap_password
Request:
  • password – Type: string, Length: up to 64
Response:
  • no response

Sets the access point password (at least 8 and up to 63 chars) for the configured encryption mode, see request/master_brick/<UID>/set_wifi2_ap_configuration.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_ap_password
Request:
  • empty payload
Response:
  • password – Type: string, Length: up to 64

Returns the access point password as set by request/master_brick/<UID>/set_wifi2_ap_password.

Note

Since WIFI Extension 2.0 firmware version 2.1.3 the password is not returned anymore.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/save_wifi2_configuration
Request:
  • empty payload
Response:
  • result – Type: int, Range: [0 to 255]

All configuration functions for the WIFI Extension 2.0 do not change the values permanently. After configuration this function has to be called to permanently store the values.

The values are stored in the EEPROM and only applied on startup. That means you have to restart the Master Brick after configuration.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/get_wifi2_firmware_version
Request:
  • empty payload
Response:
  • firmware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]

Returns the current version of the WIFI Extension 2.0 firmware.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/enable_wifi2_status_led
Request:
  • empty payload
Response:
  • no response

Turns the green status LED of the WIFI Extension 2.0 on.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/disable_wifi2_status_led
Request:
  • empty payload
Response:
  • no response

Turns the green status LED of the WIFI Extension 2.0 off.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/is_wifi2_status_led_enabled
Request:
  • empty payload
Response:
  • enabled – Type: bool, Default: true

Returns true if the green status LED of the WIFI Extension 2.0 is turned on.

New in version 2.4.0 (Firmware).

request/master_brick/<UID>/set_wifi2_mesh_configuration
Request:
  • enable – Type: bool, Default: false
  • root_ip – Type: [int, ...], Length: 4, Range: [0 to 255], Default: [0,0,0,0]
  • root_subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • root_gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • router_bssid – Type: [int, ...], Length: 6, Range: [0 to 255]
  • group_id – Type: [int, ...], Length: 6, Range: [0 to 255]
  • group_ssid_prefix – Type: string, Length: up to 16
  • gateway_ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway_port – Type: int, Range: [0 to 216 - 1]
Response:
  • no response

Requires WIFI Extension 2.0 firmware 2.1.0.

Sets the mesh specific configuration of the WIFI Extension 2.0.

The enable parameter enables or disables the mesh part of the WIFI Extension 2.0. The mesh part cannot be enabled together with the client and access-point part.

If the root_ip parameter is set to all zero then root_subnet_mask and root_gateway parameters are also set to all zero and DHCP is used for IP address configuration. Otherwise those three parameters can be used to configure a static IP address. The default configuration is DHCP.

If the router_bssid parameter is set to all zero then the information is taken from Wi-Fi scan when connecting the SSID as set by request/master_brick/<UID>/set_wifi2_mesh_router_ssid. This only works if the the SSID is not hidden. In case the router has hidden SSID this parameter must be specified, otherwise the node will not be able to reach the mesh router.

The group_id and the group_ssid_prefix parameters identifies a particular mesh network and nodes configured with same group_id and the group_ssid_prefix are considered to be in the same mesh network.

The gateway_ip and the gateway_port parameters specifies the location of the brickd that supports mesh feature.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_configuration
Request:
  • empty payload
Response:
  • enable – Type: bool, Default: false
  • root_ip – Type: [int, ...], Length: 4, Range: [0 to 255], Default: [0,0,0,0]
  • root_subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • root_gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • router_bssid – Type: [int, ...], Length: 6, Range: [0 to 255]
  • group_id – Type: [int, ...], Length: 6, Range: [0 to 255]
  • group_ssid_prefix – Type: string, Length: up to 16
  • gateway_ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway_port – Type: int, Range: [0 to 216 - 1]

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh configuration as set by request/master_brick/<UID>/set_wifi2_mesh_configuration.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/set_wifi2_mesh_router_ssid
Request:
  • ssid – Type: string, Length: up to 32
Response:
  • no response

Requires WIFI Extension 2.0 firmware 2.1.0.

Sets the mesh router SSID of the WIFI Extension 2.0. It is used to specify the mesh router to connect to.

Note that even though in the argument of this function a 32 characters long SSID is allowed, in practice valid SSID should have a maximum of 31 characters. This is due to a bug in the mesh library that we use in the firmware of the extension.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_router_ssid
Request:
  • empty payload
Response:
  • ssid – Type: string, Length: up to 32

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh router SSID as set by request/master_brick/<UID>/set_wifi2_mesh_router_ssid.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/set_wifi2_mesh_router_password
Request:
  • password – Type: string, Length: up to 64
Response:
  • no response

Requires WIFI Extension 2.0 firmware 2.1.0.

Sets the mesh router password (up to 64 characters) for WPA/WPA2 encryption. The password will be used to connect to the mesh router.

To apply configuration changes to the WIFI Extension 2.0 the request/master_brick/<UID>/save_wifi2_configuration function has to be called and the Master Brick has to be restarted afterwards.

It is recommended to use the Brick Viewer to configure the WIFI Extension 2.0.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_router_password
Request:
  • empty payload
Response:
  • password – Type: string, Length: up to 64

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh router password as set by request/master_brick/<UID>/set_wifi2_mesh_router_password.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_common_status
Request:
  • empty payload
Response:
  • status – Type: int, Range: See symbols
  • root_node – Type: bool
  • root_candidate – Type: bool
  • connected_nodes – Type: int, Range: [0 to 216 - 1]
  • rx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]
  • tx_count – Type: int, Unit: 1 B, Range: [0 to 232 - 1]

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the common mesh status of the WIFI Extension 2.0.

The following symbols are available for this function:

For status:

  • "disabled" = 0
  • "wifi_connecting" = 1
  • "got_ip" = 2
  • "mesh_local" = 3
  • "mesh_online" = 4
  • "ap_available" = 5
  • "ap_setup" = 6
  • "leaf_available" = 7

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_client_status
Request:
  • empty payload
Response:
  • hostname – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh client status of the WIFI Extension 2.0.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/get_wifi2_mesh_ap_status
Request:
  • empty payload
Response:
  • ssid – Type: string, Length: up to 32
  • ip – Type: [int, ...], Length: 4, Range: [0 to 255]
  • subnet_mask – Type: [int, ...], Length: 4, Range: [0 to 255]
  • gateway – Type: [int, ...], Length: 4, Range: [0 to 255]
  • mac_address – Type: [int, ...], Length: 6, Range: [0 to 255]

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh AP status of the WIFI Extension 2.0.

New in version 2.4.2 (Firmware).

request/master_brick/<UID>/set_spitfp_baudrate_config
Request:
  • enable_dynamic_baudrate – Type: bool, Default: true
  • minimum_dynamic_baudrate – Type: int, Unit: 1 Bd, Range: [400000 to 2000000], Default: 400000
Response:
  • no response

The SPITF protocol can be used with a dynamic baudrate. If the dynamic baudrate is enabled, the Brick will try to adapt the baudrate for the communication between Bricks and Bricklets according to the amount of data that is transferred.

The baudrate will be increased exponentially if lots of data is sent/received and decreased linearly if little data is sent/received.

This lowers the baudrate in applications where little data is transferred (e.g. a weather station) and increases the robustness. If there is lots of data to transfer (e.g. Thermal Imaging Bricklet) it automatically increases the baudrate as needed.

In cases where some data has to transferred as fast as possible every few seconds (e.g. RS485 Bricklet with a high baudrate but small payload) you may want to turn the dynamic baudrate off to get the highest possible performance.

The maximum value of the baudrate can be set per port with the function request/master_brick/<UID>/set_spitfp_baudrate. If the dynamic baudrate is disabled, the baudrate as set by request/master_brick/<UID>/set_spitfp_baudrate will be used statically.

New in version 2.4.6 (Firmware).

request/master_brick/<UID>/get_spitfp_baudrate_config
Request:
  • empty payload
Response:
  • enable_dynamic_baudrate – Type: bool, Default: true
  • minimum_dynamic_baudrate – Type: int, Unit: 1 Bd, Range: [400000 to 2000000], Default: 400000

Returns the baudrate config, see request/master_brick/<UID>/set_spitfp_baudrate_config.

New in version 2.4.6 (Firmware).

request/master_brick/<UID>/get_send_timeout_count
Request:
  • communication_method – Type: int, Range: See symbols
Response:
  • timeout_count – Type: int, Range: [0 to 232 - 1]

Returns the timeout count for the different communication methods.

The methods 0-2 are available for all Bricks, 3-7 only for Master Bricks.

This function is mostly used for debugging during development, in normal operation the counters should nearly always stay at 0.

The following symbols are available for this function:

For communication_method:

  • "none" = 0
  • "usb" = 1
  • "spi_stack" = 2
  • "chibi" = 3
  • "rs485" = 4
  • "wifi" = 5
  • "ethernet" = 6
  • "wifi_v2" = 7

New in version 2.4.3 (Firmware).

request/master_brick/<UID>/set_spitfp_baudrate
Request:
  • bricklet_port – Type: char, Range: ["a" to "d"]
  • baudrate – Type: int, Unit: 1 Bd, Range: [400000 to 2000000], Default: 1400000
Response:
  • no response

Sets the baudrate for a specific Bricklet port.

If you want to increase the throughput of Bricklets you can increase the baudrate. If you get a high error count because of high interference (see request/master_brick/<UID>/get_spitfp_error_count) you can decrease the baudrate.

If the dynamic baudrate feature is enabled, the baudrate set by this function corresponds to the maximum baudrate (see request/master_brick/<UID>/set_spitfp_baudrate_config).

Regulatory testing is done with the default baudrate. If CE compatibility or similar is necessary in your applications we recommend to not change the baudrate.

New in version 2.4.3 (Firmware).

request/master_brick/<UID>/get_spitfp_baudrate
Request:
  • bricklet_port – Type: char, Range: ["a" to "d"]
Response:
  • baudrate – Type: int, Unit: 1 Bd, Range: [400000 to 2000000], Default: 1400000

Returns the baudrate for a given Bricklet port, see request/master_brick/<UID>/set_spitfp_baudrate.

New in version 2.4.3 (Firmware).

request/master_brick/<UID>/get_spitfp_error_count
Request:
  • bricklet_port – Type: char, Range: ["a" to "d"]
Response:
  • error_count_ack_checksum – Type: int, Range: [0 to 232 - 1]
  • error_count_message_checksum – Type: int, Range: [0 to 232 - 1]
  • error_count_frame – Type: int, Range: [0 to 232 - 1]
  • error_count_overflow – Type: int, Range: [0 to 232 - 1]

Returns the error count for the communication between Brick and Bricklet.

The errors are divided into

  • ACK checksum errors,
  • message checksum errors,
  • framing errors and
  • overflow errors.

The errors counts are for errors that occur on the Brick side. All Bricklets have a similar function that returns the errors on the Bricklet side.

New in version 2.4.3 (Firmware).

request/master_brick/<UID>/enable_status_led
Request:
  • empty payload
Response:
  • no response

Enables the status LED.

The status LED is the blue LED next to the USB connector. If enabled is is on and it flickers if data is transfered. If disabled it is always off.

The default state is enabled.

New in version 2.3.2 (Firmware).

request/master_brick/<UID>/disable_status_led
Request:
  • empty payload
Response:
  • no response

Disables the status LED.

The status LED is the blue LED next to the USB connector. If enabled is is on and it flickers if data is transfered. If disabled it is always off.

The default state is enabled.

New in version 2.3.2 (Firmware).

request/master_brick/<UID>/is_status_led_enabled
Request:
  • empty payload
Response:
  • enabled – Type: bool, Default: true

Returns true if the status LED is enabled, false otherwise.

New in version 2.3.2 (Firmware).

request/master_brick/<UID>/get_chip_temperature
Request:
  • empty payload
Response:
  • temperature – Type: int, Unit: 1/10 °C, Range: [-215 to 215 - 1]

Returns the temperature as measured inside the microcontroller. The value returned is not the ambient temperature!

The temperature is only proportional to the real temperature and it has an accuracy of ±15%. Practically it is only useful as an indicator for temperature changes.

request/master_brick/<UID>/reset
Request:
  • empty payload
Response:
  • no response

Calling this function will reset the Brick. Calling this function on a Brick inside of a stack will reset the whole stack.

After a reset you have to create new device objects, calling functions on the existing ones will result in undefined behavior!

request/master_brick/<UID>/get_identity
Request:
  • empty payload
Response:
  • uid – Type: string, Length: up to 8
  • connected_uid – Type: string, Length: up to 8
  • position – Type: char, Range: ["0" to "8"]
  • hardware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]
  • firmware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]
  • device_identifier – Type: int, Range: [0 to 216 - 1]
  • _display_name – Type: string

Returns the UID, the UID where the Brick is connected to, the position, the hardware and firmware version as well as the device identifier.

The position is the position in the stack from '0' (bottom) to '8' (top).

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 Master's name in a human readable form.

Callback Configuration Functions

request/master_brick/<UID>/set_stack_current_callback_period
Request:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Response:
  • no response

Sets the period with which the register/master_brick/<UID>/stack_current callback is triggered periodically. A value of 0 turns the callback off.

The register/master_brick/<UID>/stack_current callback is only triggered if the current has changed since the last triggering.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_stack_current_callback_period
Request:
  • empty payload
Response:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0

Returns the period as set by request/master_brick/<UID>/set_stack_current_callback_period.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_stack_voltage_callback_period
Request:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Response:
  • no response

Sets the period with which the register/master_brick/<UID>/stack_voltage callback is triggered periodically. A value of 0 turns the callback off.

The register/master_brick/<UID>/stack_voltage callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_stack_voltage_callback_period
Request:
  • empty payload
Response:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0

Returns the period as set by request/master_brick/<UID>/set_stack_voltage_callback_period.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_usb_voltage_callback_period
Request:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Response:
  • no response

Sets the period with which the register/master_brick/<UID>/usb_voltage callback is triggered periodically. A value of 0 turns the callback off.

The register/master_brick/<UID>/usb_voltage callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_usb_voltage_callback_period
Request:
  • empty payload
Response:
  • period – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0

Returns the period as set by request/master_brick/<UID>/set_usb_voltage_callback_period.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_stack_current_callback_threshold
Request:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
Response:
  • no response

Sets the thresholds for the register/master_brick/<UID>/stack_current_reached callback.

The following options are possible:

Option Description
'x' Callback is turned off
'o' Callback is triggered when the current is outside the min and max values
'i' Callback is triggered when the current is inside the min and max values
'<' Callback is triggered when the current is smaller than the min value (max is ignored)
'>' Callback is triggered when the current is greater than the min value (max is ignored)

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_stack_current_callback_threshold
Request:
  • empty payload
Response:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0

Returns the threshold as set by request/master_brick/<UID>/set_stack_current_callback_threshold.

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_stack_voltage_callback_threshold
Request:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
Response:
  • no response

Sets the thresholds for the register/master_brick/<UID>/stack_voltage_reached callback.

The following options are possible:

Option Description
'x' Callback is turned off
'o' Callback is triggered when the voltage is outside the min and max values
'i' Callback is triggered when the voltage is inside the min and max values
'<' Callback is triggered when the voltage is smaller than the min value (max is ignored)
'>' Callback is triggered when the voltage is greater than the min value (max is ignored)

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_stack_voltage_callback_threshold
Request:
  • empty payload
Response:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0

Returns the threshold as set by request/master_brick/<UID>/set_stack_voltage_callback_threshold.

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_usb_voltage_callback_threshold
Request:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
Response:
  • no response

Sets the thresholds for the register/master_brick/<UID>/usb_voltage_reached callback.

The following options are possible:

Option Description
'x' Callback is turned off
'o' Callback is triggered when the voltage is outside the min and max values
'i' Callback is triggered when the voltage is inside the min and max values
'<' Callback is triggered when the voltage is smaller than the min value (max is ignored)
'>' Callback is triggered when the voltage is greater than the min value (max is ignored)

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_usb_voltage_callback_threshold
Request:
  • empty payload
Response:
  • option – Type: char, Range: See symbols, Default: "x"
  • min – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: int, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0

Returns the threshold as set by request/master_brick/<UID>/set_usb_voltage_callback_threshold.

The following symbols are available for this function:

For option:

  • "off" = "x"
  • "outside" = "o"
  • "inside" = "i"
  • "smaller" = "<"
  • "greater" = ">"

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/set_debounce_period
Request:
  • debounce – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 100
Response:
  • no response

Sets the period with which the threshold callbacks

are triggered, if the thresholds

keep being reached.

New in version 2.0.5 (Firmware).

request/master_brick/<UID>/get_debounce_period
Request:
  • empty payload
Response:
  • debounce – Type: int, Unit: 1 ms, Range: [0 to 232 - 1], Default: 100

Returns the debounce period as set by request/master_brick/<UID>/set_debounce_period.

New in version 2.0.5 (Firmware).

Callbacks

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/master_brick/<UID>/stack_current
Register Request:
  • register – Type: bool
Callback Response:
  • current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/stack_current[/<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/master_brick/<UID>/stack_current[/<SUFFIX>] topic for each registered suffix.

This callback is triggered periodically with the period that is set by request/master_brick/<UID>/set_stack_current_callback_period. The callback payload is the current of the sensor.

The register/master_brick/<UID>/stack_current callback is only triggered if the current has changed since the last triggering.

New in version 2.0.5 (Firmware).

register/master_brick/<UID>/stack_voltage
Register Request:
  • register – Type: bool
Callback Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/stack_voltage[/<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/master_brick/<UID>/stack_voltage[/<SUFFIX>] topic for each registered suffix.

This callback is triggered periodically with the period that is set by request/master_brick/<UID>/set_stack_voltage_callback_period. The callback payload is the voltage of the sensor.

The register/master_brick/<UID>/stack_voltage callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

register/master_brick/<UID>/usb_voltage
Register Request:
  • register – Type: bool
Callback Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/usb_voltage[/<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/master_brick/<UID>/usb_voltage[/<SUFFIX>] topic for each registered suffix.

This callback is triggered periodically with the period that is set by request/master_brick/<UID>/set_usb_voltage_callback_period. The callback payload is the USB voltage.

The register/master_brick/<UID>/usb_voltage callback is only triggered if the USB voltage has changed since the last triggering.

Does not work with hardware version 2.1 or newer.

New in version 2.0.5 (Firmware).

register/master_brick/<UID>/stack_current_reached
Register Request:
  • register – Type: bool
Callback Response:
  • current – Type: int, Unit: 1 mA, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/stack_current_reached[/<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/master_brick/<UID>/stack_current_reached[/<SUFFIX>] topic for each registered suffix.

This callback is triggered when the threshold as set by request/master_brick/<UID>/set_stack_current_callback_threshold is reached. The callback payload is the stack current.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by request/master_brick/<UID>/set_debounce_period.

New in version 2.0.5 (Firmware).

register/master_brick/<UID>/stack_voltage_reached
Register Request:
  • register – Type: bool
Callback Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/stack_voltage_reached[/<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/master_brick/<UID>/stack_voltage_reached[/<SUFFIX>] topic for each registered suffix.

This callback is triggered when the threshold as set by request/master_brick/<UID>/set_stack_voltage_callback_threshold is reached. The callback payload is the stack voltage.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by request/master_brick/<UID>/set_debounce_period.

New in version 2.0.5 (Firmware).

register/master_brick/<UID>/usb_voltage_reached
Register Request:
  • register – Type: bool
Callback Response:
  • voltage – Type: int, Unit: 1 mV, Range: [0 to 216 - 1]

A callback can be registered for this event by publishing to the .../register/master_brick/<UID>/usb_voltage_reached[/<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/master_brick/<UID>/usb_voltage_reached[/<SUFFIX>] topic for each registered suffix.

This callback is triggered when the threshold as set by request/master_brick/<UID>/set_usb_voltage_callback_threshold is reached. The callback payload is the voltage of the sensor.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by request/master_brick/<UID>/set_debounce_period.

New in version 2.0.5 (Firmware).

Internal Functions

Internal functions are used for maintenance tasks such as flashing a new firmware of changing the UID of a Bricklet. These task should be performed using Brick Viewer instead of using the internal functions directly.

request/master_brick/<UID>/set_bricklet_xmc_flash_config
Request:
  • config – Type: int, Range: [0 to 232 - 1]
  • parameter1 – Type: int, Range: [0 to 232 - 1]
  • parameter2 – Type: int, Range: [0 to 232 - 1]
  • data – Type: [int, ...], Length: 52, Range: [0 to 255]
Response:
  • return_value – Type: int, Range: [0 to 232 - 1]
  • return_data – Type: [int, ...], Length: 60, Range: [0 to 255]

This function is for internal use to flash the initial bootstrapper and bootloader to the Bricklets.

If you need to flash a boostrapper/bootloader (for exmaple because you made your own Bricklet from scratch) please take a look at our open source flash and test tool at https://github.com/Tinkerforge/flash-test

Don't use this function directly.

New in version 2.5.0 (Firmware).

request/master_brick/<UID>/set_bricklet_xmc_flash_data
Request:
  • data – Type: [int, ...], Length: 64, Range: [0 to 255]
Response:
  • return_data – Type: int, Range: [0 to 232 - 1]

This function is for internal use to flash the initial bootstrapper and bootloader to the Bricklets.

If you need to flash a boostrapper/bootloader (for exmaple because you made your own Bricklet from scratch) please take a look at our open source flash and test tool at https://github.com/Tinkerforge/flash-test

Don't use this function directly.

New in version 2.5.0 (Firmware).

request/master_brick/<UID>/set_bricklets_enabled
Request:
  • bricklets_enabled – Type: bool
Response:
  • no response

This function is only available in Master Brick hardware version >= 3.0.

Enables/disables all four Bricklets if set to true/false.

If you disable the Bricklets the power supply to the Bricklets will be disconnected. The Bricklets will lose all configurations if disabled.

New in version 2.5.0 (Firmware).

request/master_brick/<UID>/get_bricklets_enabled
Request:
  • empty payload
Response:
  • bricklets_enabled – Type: bool

Returns true if the Bricklets are enabled, false otherwise.

New in version 2.5.0 (Firmware).

request/master_brick/<UID>/get_protocol1_bricklet_name
Request:
  • port – Type: char, Range: ["a" to "d"]
Response:
  • protocol_version – Type: int, Range: [0 to 255]
  • firmware_version – Type: [int, ...], Length: 3
    • 0: major – Type: int, Range: [0 to 255]
    • 1: minor – Type: int, Range: [0 to 255]
    • 2: revision – Type: int, Range: [0 to 255]
  • name – Type: string, Length: up to 40

Returns the firmware and protocol version and the name of the Bricklet for a given port.

This functions sole purpose is to allow automatic flashing of v1.x.y Bricklet plugins.

request/master_brick/<UID>/write_bricklet_plugin
Request:
  • port – Type: char, Range: ["a" to "d"]
  • offset – Type: int, Range: [0 to 255]
  • chunk – Type: [int, ...], Length: 32, Range: [0 to 255]
Response:
  • no response

Writes 32 bytes of firmware to the bricklet attached at the given port. The bytes are written to the position offset * 32.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

request/master_brick/<UID>/read_bricklet_plugin
Request:
  • port – Type: char, Range: ["a" to "d"]
  • offset – Type: int, Range: [0 to 255]
Response:
  • chunk – Type: [int, ...], Length: 32, Range: [0 to 255]

Reads 32 bytes of firmware from the bricklet attached at the given port. The bytes are read starting at the position offset * 32.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.