JavaScript - Master Brick

This is the description of the JavaScript 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 JavaScript API bindings is part of their general description.

Examples

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

StackStatus (Node.js)

Download (ExampleStackStatus.js)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
var Tinkerforge = require('tinkerforge');

var HOST = 'localhost';
var PORT = 4223;
var UID = '6CPWYS'; // Change to your UID

var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var master = new Tinkerforge.BrickMaster(UID, ipcon); // Create device object

ipcon.connect(HOST, PORT,
    function(error) {
        console.log('Error: '+error);        
    }
); // Connect to brickd
// Don't use device before ipcon is connected

ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
    function(connectReason) {
        // Get voltage and current from stack (in mV/mA)
        master.getStackVoltage(
            function(voltage) {
                console.log('Stack Voltage: '+voltage/1000+' V');
            },
            function(error) {
                console.log('Error: '+error);
            }
        );
        master.getStackCurrent(
            function(current) {
                console.log('Stack Current: '+current/1000+' A');
            },
            function(error) {
                console.log('Error: '+error);
            }
        );
    }
);

console.log("Press any key to exit ...");
process.stdin.on('data',
    function(data) {
        ipcon.disconnect();
        process.exit(0);
    }
);

StackStatus (HTML)

Download (ExampleStackStatus.html), Test (ExampleStackStatus.html)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <head>
        <title>Tinkerforge | JavaScript Example</title>
    </head>
    <body>
        <div style="text-align:center;">
            <h1>Master Brick Stack Status Example</h1>
            <p>
                <input value="localhost" id="host" type="text" size="20">:
                <input value="4280" id="port" type="text" size="5">,
                <input value="uid" id="uid" type="text" size="5">
                <input value="Start Example" id="start" type="button" onclick="startExample();">
            </p>
            <p>
                <textarea id="text" cols="80" rows="24" style="resize:none;"
                          >Press "Start Example" to begin ...</textarea>
            </p>
        <div>
        <script src="./Tinkerforge.js" type='text/javascript'></script>
        <script type='text/javascript'>
            var ipcon;
            var textArea = document.getElementById("text");
            function startExample() {
                textArea.value = "";
                var HOST = document.getElementById("host").value;
                var PORT = parseInt(document.getElementById("port").value);
                var UID = document.getElementById("uid").value;
                if(ipcon !== undefined) {
                    ipcon.disconnect();
                }
                ipcon = new Tinkerforge.IPConnection(); // Create IP connection
                var master = new Tinkerforge.BrickMaster(UID, ipcon); // Create device object
                ipcon.connect(HOST, PORT,
                    function(error) {
                        textArea.value += 'Error: '+error+'\n';
                    }
                ); // Connect to brickd
                // Don't use device before ipcon is connected

                ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
                    function(connectReason) {
                        // Get voltage and current from stack (in mV/mA)
                        master.getStackVoltage(
                            function(voltage) {
                                textArea.value += 'Stack Voltage: '+voltage/1000+' V\n';
                            },
                            function(error) {
                                textArea.value += 'Error: '+error+'\n';
                            }
                        );
                        master.getStackCurrent(
                            function(current) {
                                textArea.value += 'Stack Current: '+current/1000+' A\n';
                            },
                            function(error) {
                                textArea.value += 'Error: '+error+'\n';
                            }
                        );
                    }
                );
            }
        </script>
    </body>
</html>

API

Generally, every method of the JavaScript bindings can take two optional parameters, returnCallback and errorCallback. These are two user defined callback functions. The returnCallback is called with the return values as parameters, if the method returns something. The errorCallback is called with an error code in case of an error. The error code can be one of the following values:

  • IPConnection.ERROR_ALREADY_CONNECTED = 11
  • IPConnection.ERROR_NOT_CONNECTED = 12
  • IPConnection.ERROR_CONNECT_FAILED = 13
  • IPConnection.ERROR_INVALID_FUNCTION_ID = 21
  • IPConnection.ERROR_TIMEOUT = 31
  • IPConnection.ERROR_INVALID_PARAMETER = 41
  • IPConnection.ERROR_FUNCTION_NOT_SUPPORTED = 42
  • IPConnection.ERROR_UNKNOWN_ERROR = 43

The namespace for the JavaScript bindings is Tinkerforge.*.

Basic Functions

new BrickMaster(uid, ipcon)
Parameters:
  • uid -- string
  • ipcon -- IPConnection

Creates an object with the unique device ID uid:

var master = new BrickMaster("YOUR_DEVICE_UID", ipcon);

This object can then be used after the IP Connection is connected (see examples above).

BrickMaster.getStackVoltage([returnCallback][, errorCallback])
Callback:
  • voltage -- int

Returns the stack voltage in mV. 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.

BrickMaster.getStackCurrent([returnCallback][, errorCallback])
Callback:
  • current -- int

Returns the stack current in mA. 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.

Advanced Functions

BrickMaster.setExtensionType(extension, exttype[, returnCallback][, errorCallback])
Parameters:
  • extension -- int
  • exttype -- int
Callback:

undefined

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

Possible extension types:

Type Description
1 Chibi
2 RS485
3 WIFI
4 Ethernet

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 constants are available for this function:

  • BrickMaster.EXTENSION_TYPE_CHIBI = 1
  • BrickMaster.EXTENSION_TYPE_RS485 = 2
  • BrickMaster.EXTENSION_TYPE_WIFI = 3
  • BrickMaster.EXTENSION_TYPE_ETHERNET = 4
BrickMaster.getExtensionType(extension[, returnCallback][, errorCallback])
Parameters:
  • extension -- int
Callback:
  • exttype -- int

Returns the type for a given extension as set by setExtensionType().

The following constants are available for this function:

  • BrickMaster.EXTENSION_TYPE_CHIBI = 1
  • BrickMaster.EXTENSION_TYPE_RS485 = 2
  • BrickMaster.EXTENSION_TYPE_WIFI = 3
  • BrickMaster.EXTENSION_TYPE_ETHERNET = 4
BrickMaster.isChibiPresent([returnCallback][, errorCallback])
Callback:
  • present -- boolean

Returns true if a Chibi Extension is available to be used by the Master Brick.

BrickMaster.setChibiAddress(address[, returnCallback][, errorCallback])
Parameters:
  • address -- int
Callback:

undefined

Sets the address (1-255) 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.

BrickMaster.getChibiAddress([returnCallback][, errorCallback])
Callback:
  • address -- int

Returns the address as set by setChibiAddress().

BrickMaster.setChibiMasterAddress(address[, returnCallback][, errorCallback])
Parameters:
  • address -- int
Callback:

undefined

Sets the address (1-255) 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.

BrickMaster.getChibiMasterAddress([returnCallback][, errorCallback])
Callback:
  • address -- int

Returns the address as set by setChibiMasterAddress().

BrickMaster.setChibiSlaveAddress(num, address[, returnCallback][, errorCallback])
Parameters:
  • num -- int
  • address -- int
Callback:

undefined

Sets up to 254 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 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.

BrickMaster.getChibiSlaveAddress(num[, returnCallback][, errorCallback])
Parameters:
  • num -- int
Callback:
  • address -- int

Returns the slave address for a given num as set by setChibiSlaveAddress().

BrickMaster.getChibiSignalStrength([returnCallback][, errorCallback])
Callback:
  • signalStrength -- int

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

BrickMaster.getChibiErrorLog([returnCallback][, errorCallback])
Callback:
  • underrun -- int
  • crcError -- int
  • noAck -- int
  • overflow -- int

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.

BrickMaster.setChibiFrequency(frequency[, returnCallback][, errorCallback])
Parameters:
  • frequency -- int
Callback:

undefined

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 constants are available for this function:

  • BrickMaster.CHIBI_FREQUENCY_OQPSK_868_MHZ = 0
  • BrickMaster.CHIBI_FREQUENCY_OQPSK_915_MHZ = 1
  • BrickMaster.CHIBI_FREQUENCY_OQPSK_780_MHZ = 2
  • BrickMaster.CHIBI_FREQUENCY_BPSK40_915_MHZ = 3
BrickMaster.getChibiFrequency([returnCallback][, errorCallback])
Callback:
  • frequency -- int

Returns the frequency value as set by setChibiFrequency().

The following constants are available for this function:

  • BrickMaster.CHIBI_FREQUENCY_OQPSK_868_MHZ = 0
  • BrickMaster.CHIBI_FREQUENCY_OQPSK_915_MHZ = 1
  • BrickMaster.CHIBI_FREQUENCY_OQPSK_780_MHZ = 2
  • BrickMaster.CHIBI_FREQUENCY_BPSK40_915_MHZ = 3
BrickMaster.setChibiChannel(channel[, returnCallback][, errorCallback])
Parameters:
  • channel -- int
Callback:

undefined

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.

BrickMaster.getChibiChannel([returnCallback][, errorCallback])
Callback:
  • channel -- int

Returns the channel as set by setChibiChannel().

BrickMaster.isRS485Present([returnCallback][, errorCallback])
Callback:
  • present -- boolean

Returns true if a RS485 Extension is available to be used by the Master Brick.

BrickMaster.setRS485Address(address[, returnCallback][, errorCallback])
Parameters:
  • address -- int
Callback:

undefined

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.

BrickMaster.getRS485Address([returnCallback][, errorCallback])
Callback:
  • address -- int

Returns the address as set by setRS485Address().

BrickMaster.setRS485SlaveAddress(num, address[, returnCallback][, errorCallback])
Parameters:
  • num -- int
  • address -- int
Callback:

undefined

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.

BrickMaster.getRS485SlaveAddress(num[, returnCallback][, errorCallback])
Parameters:
  • num -- int
Callback:
  • address -- int

Returns the slave address for a given num as set by setRS485SlaveAddress().

BrickMaster.getRS485ErrorLog([returnCallback][, errorCallback])
Callback:
  • crcError -- int

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.

BrickMaster.setRS485Configuration(speed, parity, stopbits[, returnCallback][, errorCallback])
Parameters:
  • speed -- int
  • parity -- char
  • stopbits -- int
Callback:

undefined

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

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 (100kbit/s).

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 constants are available for this function:

  • BrickMaster.RS485_PARITY_NONE = 'n'
  • BrickMaster.RS485_PARITY_EVEN = 'e'
  • BrickMaster.RS485_PARITY_ODD = 'o'
BrickMaster.getRS485Configuration([returnCallback][, errorCallback])
Callback:
  • speed -- int
  • parity -- char
  • stopbits -- int

Returns the configuration as set by setRS485Configuration().

The following constants are available for this function:

  • BrickMaster.RS485_PARITY_NONE = 'n'
  • BrickMaster.RS485_PARITY_EVEN = 'e'
  • BrickMaster.RS485_PARITY_ODD = 'o'
BrickMaster.isWifiPresent([returnCallback][, errorCallback])
Callback:
  • present -- boolean

Returns true if a WIFI Extension is available to be used by the Master Brick.

BrickMaster.setWifiConfiguration(ssid, connection, ip, subnetMask, gateway, port[, returnCallback][, errorCallback])
Parameters:
  • ssid -- string
  • connection -- int
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • port -- int
Callback:

undefined

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 default port, that is used by brickd, is 4223.

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 constants are available for this function:

  • BrickMaster.WIFI_CONNECTION_DHCP = 0
  • BrickMaster.WIFI_CONNECTION_STATIC_IP = 1
  • BrickMaster.WIFI_CONNECTION_ACCESS_POINT_DHCP = 2
  • BrickMaster.WIFI_CONNECTION_ACCESS_POINT_STATIC_IP = 3
  • BrickMaster.WIFI_CONNECTION_AD_HOC_DHCP = 4
  • BrickMaster.WIFI_CONNECTION_AD_HOC_STATIC_IP = 5
BrickMaster.getWifiConfiguration([returnCallback][, errorCallback])
Callback:
  • ssid -- string
  • connection -- int
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • port -- int

Returns the configuration as set by setWifiConfiguration().

The following constants are available for this function:

  • BrickMaster.WIFI_CONNECTION_DHCP = 0
  • BrickMaster.WIFI_CONNECTION_STATIC_IP = 1
  • BrickMaster.WIFI_CONNECTION_ACCESS_POINT_DHCP = 2
  • BrickMaster.WIFI_CONNECTION_ACCESS_POINT_STATIC_IP = 3
  • BrickMaster.WIFI_CONNECTION_AD_HOC_DHCP = 4
  • BrickMaster.WIFI_CONNECTION_AD_HOC_STATIC_IP = 5
BrickMaster.setWifiEncryption(encryption, key, keyIndex, eapOptions, caCertificateLength, clientCertificateLength, privateKeyLength[, returnCallback][, errorCallback])
Parameters:
  • encryption -- int
  • key -- string
  • keyIndex -- int
  • eapOptions -- int
  • caCertificateLength -- int
  • clientCertificateLength -- int
  • privateKeyLength -- int
Callback:

undefined

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 setLongWifiKey().

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 certificate length are given in byte and the certificates themselves can be set with setWifiCertificate(). 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 constants are available for this function:

  • BrickMaster.WIFI_ENCRYPTION_WPA_WPA2 = 0
  • BrickMaster.WIFI_ENCRYPTION_WPA_ENTERPRISE = 1
  • BrickMaster.WIFI_ENCRYPTION_WEP = 2
  • BrickMaster.WIFI_ENCRYPTION_NO_ENCRYPTION = 3
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_FAST = 0
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_TLS = 1
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_TTLS = 2
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_PEAP = 3
  • BrickMaster.WIFI_EAP_OPTION_INNER_AUTH_EAP_MSCHAP = 0
  • BrickMaster.WIFI_EAP_OPTION_INNER_AUTH_EAP_GTC = 4
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_CA_CERT = 0
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_CLIENT_CERT = 8
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_PRIVATE_KEY = 16
BrickMaster.getWifiEncryption([returnCallback][, errorCallback])
Callback:
  • encryption -- int
  • key -- string
  • keyIndex -- int
  • eapOptions -- int
  • caCertificateLength -- int
  • clientCertificateLength -- int
  • privateKeyLength -- int

Returns the encryption as set by setWifiEncryption().

The following constants are available for this function:

  • BrickMaster.WIFI_ENCRYPTION_WPA_WPA2 = 0
  • BrickMaster.WIFI_ENCRYPTION_WPA_ENTERPRISE = 1
  • BrickMaster.WIFI_ENCRYPTION_WEP = 2
  • BrickMaster.WIFI_ENCRYPTION_NO_ENCRYPTION = 3
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_FAST = 0
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_TLS = 1
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_TTLS = 2
  • BrickMaster.WIFI_EAP_OPTION_OUTER_AUTH_EAP_PEAP = 3
  • BrickMaster.WIFI_EAP_OPTION_INNER_AUTH_EAP_MSCHAP = 0
  • BrickMaster.WIFI_EAP_OPTION_INNER_AUTH_EAP_GTC = 4
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_CA_CERT = 0
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_CLIENT_CERT = 8
  • BrickMaster.WIFI_EAP_OPTION_CERT_TYPE_PRIVATE_KEY = 16
BrickMaster.getWifiStatus([returnCallback][, errorCallback])
Callback:
  • macAddress -- [int, int, int, int, int, int]
  • bssid -- [int, int, int, int, int, int]
  • channel -- int
  • rssi -- int
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • rxCount -- int
  • txCount -- int
  • state -- int

Returns the status of the WIFI Extension. The state is updated automatically, all of the other parameters are updated on startup and every time refreshWifiStatus() is called.

Possible states are:

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

The following constants are available for this function:

  • BrickMaster.WIFI_STATE_DISASSOCIATED = 0
  • BrickMaster.WIFI_STATE_ASSOCIATED = 1
  • BrickMaster.WIFI_STATE_ASSOCIATING = 2
  • BrickMaster.WIFI_STATE_ERROR = 3
  • BrickMaster.WIFI_STATE_NOT_INITIALIZED_YET = 255
BrickMaster.refreshWifiStatus([returnCallback][, errorCallback])
Callback:undefined

Refreshes the Wi-Fi status (see getWifiStatus()). 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.

BrickMaster.setWifiCertificate(index, data, dataLength[, returnCallback][, errorCallback])
Parameters:
  • index -- int
  • data -- [int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int]
  • dataLength -- int
Callback:

undefined

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.

BrickMaster.getWifiCertificate(index[, returnCallback][, errorCallback])
Parameters:
  • index -- int
Callback:
  • data -- [int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int]
  • dataLength -- int

Returns the certificate for a given index as set by setWifiCertificate().

BrickMaster.setWifiPowerMode(mode[, returnCallback][, errorCallback])
Parameters:
  • mode -- int
Callback:

undefined

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 default value is 0 (Full Speed).

The following constants are available for this function:

  • BrickMaster.WIFI_POWER_MODE_FULL_SPEED = 0
  • BrickMaster.WIFI_POWER_MODE_LOW_POWER = 1
BrickMaster.getWifiPowerMode([returnCallback][, errorCallback])
Callback:
  • mode -- int

Returns the power mode as set by setWifiPowerMode().

The following constants are available for this function:

  • BrickMaster.WIFI_POWER_MODE_FULL_SPEED = 0
  • BrickMaster.WIFI_POWER_MODE_LOW_POWER = 1
BrickMaster.getWifiBufferInfo([returnCallback][, errorCallback])
Callback:
  • overflow -- int
  • lowWatermark -- int
  • used -- int

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.

BrickMaster.setWifiRegulatoryDomain(domain[, returnCallback][, errorCallback])
Parameters:
  • domain -- int
Callback:

undefined

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 default value is 1 (ETSI).

The following constants are available for this function:

  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO11 = 0
  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO13 = 1
  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO14 = 2
BrickMaster.getWifiRegulatoryDomain([returnCallback][, errorCallback])
Callback:
  • domain -- int

Returns the regulatory domain as set by setWifiRegulatoryDomain().

The following constants are available for this function:

  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO11 = 0
  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO13 = 1
  • BrickMaster.WIFI_DOMAIN_CHANNEL_1TO14 = 2
BrickMaster.getUSBVoltage([returnCallback][, errorCallback])
Callback:
  • voltage -- int

Returns the USB voltage in mV. Does not work with hardware version 2.1.

BrickMaster.setLongWifiKey(key[, returnCallback][, errorCallback])
Parameters:
  • key -- string
Callback:

undefined

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 setWifiEncryption() 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).

BrickMaster.getLongWifiKey([returnCallback][, errorCallback])
Callback:
  • key -- string

Returns the encryption key as set by setLongWifiKey().

New in version 2.0.2 (Firmware).

BrickMaster.setWifiHostname(hostname[, returnCallback][, errorCallback])
Parameters:
  • hostname -- string
Callback:

undefined

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

BrickMaster.getWifiHostname([returnCallback][, errorCallback])
Callback:
  • hostname -- string

Returns the hostname as set by getWifiHostname().

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

New in version 2.0.5 (Firmware).

BrickMaster.isEthernetPresent([returnCallback][, errorCallback])
Callback:
  • present -- boolean

Returns true if a Ethernet Extension is available to be used by the Master Brick.

New in version 2.1.0 (Firmware).

BrickMaster.setEthernetConfiguration(connection, ip, subnetMask, gateway, port[, returnCallback][, errorCallback])
Parameters:
  • connection -- int
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • port -- int
Callback:

undefined

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 default port, that is used by brickd, is 4223.

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 constants are available for this function:

  • BrickMaster.ETHERNET_CONNECTION_DHCP = 0
  • BrickMaster.ETHERNET_CONNECTION_STATIC_IP = 1

New in version 2.1.0 (Firmware).

BrickMaster.getEthernetConfiguration([returnCallback][, errorCallback])
Callback:
  • connection -- int
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • port -- int

Returns the configuration as set by setEthernetConfiguration().

The following constants are available for this function:

  • BrickMaster.ETHERNET_CONNECTION_DHCP = 0
  • BrickMaster.ETHERNET_CONNECTION_STATIC_IP = 1

New in version 2.1.0 (Firmware).

BrickMaster.getEthernetStatus([returnCallback][, errorCallback])
Callback:
  • macAddress -- [int, int, int, int, int, int]
  • ip -- [int, int, int, int]
  • subnetMask -- [int, int, int, int]
  • gateway -- [int, int, int, int]
  • rxCount -- int
  • txCount -- int
  • hostname -- string

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

BrickMaster.setEthernetHostname(hostname[, returnCallback][, errorCallback])
Parameters:
  • hostname -- string
Callback:

undefined

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 getEthernetStatus().

New in version 2.1.0 (Firmware).

BrickMaster.setEthernetMACAddress(macAddress[, returnCallback][, errorCallback])
Parameters:
  • macAddress -- [int, int, int, int, int, int]
Callback:

undefined

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 getEthernetStatus().

New in version 2.1.0 (Firmware).

BrickMaster.setEthernetWebsocketConfiguration(sockets, port[, returnCallback][, errorCallback])
Parameters:
  • sockets -- int
  • port -- int
Callback:

undefined

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.

The default values are 3 for the socket connections and 4280 for the port.

New in version 2.2.0 (Firmware).

BrickMaster.getEthernetWebsocketConfiguration([returnCallback][, errorCallback])
Callback:
  • sockets -- int
  • port -- int

Returns the configuration as set by setEthernetConfiguration().

New in version 2.2.0 (Firmware).

BrickMaster.setEthernetAuthenticationSecret(secret[, returnCallback][, errorCallback])
Parameters:
  • secret -- string
Callback:

undefined

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

BrickMaster.getEthernetAuthenticationSecret([returnCallback][, errorCallback])
Callback:
  • secret -- string

Returns the authentication secret as set by setEthernetAuthenticationSecret().

New in version 2.2.0 (Firmware).

BrickMaster.setWifiAuthenticationSecret(secret[, returnCallback][, errorCallback])
Parameters:
  • secret -- string
Callback:

undefined

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

BrickMaster.getWifiAuthenticationSecret([returnCallback][, errorCallback])
Callback:
  • secret -- string

Returns the authentication secret as set by setWifiAuthenticationSecret().

New in version 2.2.0 (Firmware).

BrickMaster.getAPIVersion()
Return type:[int, int, int]

Returns the version of the API definition (major, minor, revision) implemented by this API bindings. This is neither the release version of this API bindings nor does it tell you anything about the represented Brick or Bricklet.

BrickMaster.getResponseExpected(functionId[, errorCallback])
Parameters:
  • functionId -- int
Return type:

boolean

Returns the response expected flag for the function specified by the function ID parameter. It is true if the function is expected to send a response, false otherwise.

For getter functions this is enabled by default and cannot be disabled, because those functions will always send a response. For callback configuration functions it is enabled by default too, but can be disabled by setResponseExpected(). For setter functions it is disabled by default and can be enabled.

Enabling the response expected flag for a setter function allows to detect timeouts and other error conditions calls of this setter as well. The device will then send a response for this purpose. If this flag is disabled for a setter function then no response is send and errors are silently ignored, because they cannot be detected.

See setResponseExpected() for the list of function ID constants available for this function.

BrickMaster.setResponseExpected(functionId, responseExpected[, errorCallback])
Parameters:
  • functionId -- int
  • responseExpected -- boolean

Changes the response expected flag of the function specified by the function ID parameter. This flag can only be changed for setter (default value: false) and callback configuration functions (default value: true). For getter functions it is always enabled and callbacks it is always disabled.

Enabling the response expected flag for a setter function allows to detect timeouts and other error conditions calls of this setter as well. The device will then send a response for this purpose. If this flag is disabled for a setter function then no response is send and errors are silently ignored, because they cannot be detected.

The following function ID constants are available for this function:

  • BrickMaster.FUNCTION_SET_EXTENSION_TYPE = 3
  • BrickMaster.FUNCTION_SET_CHIBI_ADDRESS = 6
  • BrickMaster.FUNCTION_SET_CHIBI_MASTER_ADDRESS = 8
  • BrickMaster.FUNCTION_SET_CHIBI_SLAVE_ADDRESS = 10
  • BrickMaster.FUNCTION_SET_CHIBI_FREQUENCY = 14
  • BrickMaster.FUNCTION_SET_CHIBI_CHANNEL = 16
  • BrickMaster.FUNCTION_SET_RS485_ADDRESS = 19
  • BrickMaster.FUNCTION_SET_RS485_SLAVE_ADDRESS = 21
  • BrickMaster.FUNCTION_SET_RS485_CONFIGURATION = 24
  • BrickMaster.FUNCTION_SET_WIFI_CONFIGURATION = 27
  • BrickMaster.FUNCTION_SET_WIFI_ENCRYPTION = 29
  • BrickMaster.FUNCTION_REFRESH_WIFI_STATUS = 32
  • BrickMaster.FUNCTION_SET_WIFI_CERTIFICATE = 33
  • BrickMaster.FUNCTION_SET_WIFI_POWER_MODE = 35
  • BrickMaster.FUNCTION_SET_WIFI_REGULATORY_DOMAIN = 38
  • BrickMaster.FUNCTION_SET_LONG_WIFI_KEY = 41
  • BrickMaster.FUNCTION_SET_WIFI_HOSTNAME = 43
  • BrickMaster.FUNCTION_SET_STACK_CURRENT_CALLBACK_PERIOD = 45
  • BrickMaster.FUNCTION_SET_STACK_VOLTAGE_CALLBACK_PERIOD = 47
  • BrickMaster.FUNCTION_SET_USB_VOLTAGE_CALLBACK_PERIOD = 49
  • BrickMaster.FUNCTION_SET_STACK_CURRENT_CALLBACK_THRESHOLD = 51
  • BrickMaster.FUNCTION_SET_STACK_VOLTAGE_CALLBACK_THRESHOLD = 53
  • BrickMaster.FUNCTION_SET_USB_VOLTAGE_CALLBACK_THRESHOLD = 55
  • BrickMaster.FUNCTION_SET_DEBOUNCE_PERIOD = 57
  • BrickMaster.FUNCTION_SET_ETHERNET_CONFIGURATION = 66
  • BrickMaster.FUNCTION_SET_ETHERNET_HOSTNAME = 69
  • BrickMaster.FUNCTION_SET_ETHERNET_MAC_ADDRESS = 70
  • BrickMaster.FUNCTION_SET_ETHERNET_WEBSOCKET_CONFIGURATION = 71
  • BrickMaster.FUNCTION_SET_ETHERNET_AUTHENTICATION_SECRET = 73
  • BrickMaster.FUNCTION_SET_WIFI_AUTHENTICATION_SECRET = 75
  • BrickMaster.FUNCTION_ENABLE_STATUS_LED = 238
  • BrickMaster.FUNCTION_DISABLE_STATUS_LED = 239
  • BrickMaster.FUNCTION_RESET = 243
BrickMaster.setResponseExpectedAll(responseExpected)
Parameters:
  • responseExpected -- boolean

Changes the response expected flag for all setter and callback configuration functions of this device at once.

BrickMaster.enableStatusLED([returnCallback][, errorCallback])
Callback:undefined

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

BrickMaster.disableStatusLED([returnCallback][, errorCallback])
Callback:undefined

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

BrickMaster.isStatusLEDEnabled([returnCallback][, errorCallback])
Callback:
  • enabled -- boolean

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

New in version 2.3.2 (Firmware).

BrickMaster.getProtocol1BrickletName(port[, returnCallback][, errorCallback])
Parameters:
  • port -- char
Callback:
  • protocolVersion -- int
  • firmwareVersion -- [int, int, int]
  • name -- string

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.

BrickMaster.getChipTemperature([returnCallback][, errorCallback])
Callback:
  • temperature -- int

Returns the temperature in °C/10 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.

BrickMaster.reset([returnCallback][, errorCallback])
Callback:undefined

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!

BrickMaster.getIdentity([returnCallback][, errorCallback])
Callback:
  • uid -- string
  • connectedUid -- string
  • position -- char
  • hardwareVersion -- [int, int, int]
  • firmwareVersion -- [int, int, int]
  • deviceIdentifier -- int

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 can be '0'-'8' (stack position).

The device identifier numbers can be found here. There is also a constant for the device identifier of this Brick.

Callback Configuration Functions

BrickMaster.on(id, callback)
Parameters:
  • id -- int
  • callback -- function

Registers a callback with ID id to the function callback. The available IDs with corresponding function signatures are listed below.

BrickMaster.setStackCurrentCallbackPeriod(period[, returnCallback][, errorCallback])
Parameters:
  • period -- int
Callback:

undefined

Sets the period in ms with which the CALLBACK_STACK_CURRENT callback is triggered periodically. A value of 0 turns the callback off.

CALLBACK_STACK_CURRENT is only triggered if the current has changed since the last triggering.

The default value is 0.

New in version 2.0.5 (Firmware).

BrickMaster.getStackCurrentCallbackPeriod([returnCallback][, errorCallback])
Callback:
  • period -- int

Returns the period as set by SetCurrentCallbackPeriod().

New in version 2.0.5 (Firmware).

BrickMaster.setStackVoltageCallbackPeriod(period[, returnCallback][, errorCallback])
Parameters:
  • period -- int
Callback:

undefined

Sets the period in ms with which the CALLBACK_STACK_VOLTAGE callback is triggered periodically. A value of 0 turns the callback off.

CALLBACK_STACK_VOLTAGE is only triggered if the voltage has changed since the last triggering.

The default value is 0.

New in version 2.0.5 (Firmware).

BrickMaster.getStackVoltageCallbackPeriod([returnCallback][, errorCallback])
Callback:
  • period -- int

Returns the period as set by setStackVoltageCallbackPeriod().

New in version 2.0.5 (Firmware).

BrickMaster.setUSBVoltageCallbackPeriod(period[, returnCallback][, errorCallback])
Parameters:
  • period -- int
Callback:

undefined

Sets the period in ms with which the CALLBACK_USB_VOLTAGE callback is triggered periodically. A value of 0 turns the callback off.

CALLBACK_USB_VOLTAGE is only triggered if the voltage has changed since the last triggering.

The default value is 0.

New in version 2.0.5 (Firmware).

BrickMaster.getUSBVoltageCallbackPeriod([returnCallback][, errorCallback])
Callback:
  • period -- int

Returns the period as set by setUSBVoltageCallbackPeriod().

New in version 2.0.5 (Firmware).

BrickMaster.setStackCurrentCallbackThreshold(option, min, max[, returnCallback][, errorCallback])
Parameters:
  • option -- char
  • min -- int
  • max -- int
Callback:

undefined

Sets the thresholds for the CALLBACK_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 default value is ('x', 0, 0).

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.getStackCurrentCallbackThreshold([returnCallback][, errorCallback])
Callback:
  • option -- char
  • min -- int
  • max -- int

Returns the threshold as set by setStackCurrentCallbackThreshold().

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.setStackVoltageCallbackThreshold(option, min, max[, returnCallback][, errorCallback])
Parameters:
  • option -- char
  • min -- int
  • max -- int
Callback:

undefined

Sets the thresholds for the StackStackVoltageReached() 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 default value is ('x', 0, 0).

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.getStackVoltageCallbackThreshold([returnCallback][, errorCallback])
Callback:
  • option -- char
  • min -- int
  • max -- int

Returns the threshold as set by setStackVoltageCallbackThreshold().

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.setUSBVoltageCallbackThreshold(option, min, max[, returnCallback][, errorCallback])
Parameters:
  • option -- char
  • min -- int
  • max -- int
Callback:

undefined

Sets the thresholds for the CALLBACK_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 default value is ('x', 0, 0).

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.getUSBVoltageCallbackThreshold([returnCallback][, errorCallback])
Callback:
  • option -- char
  • min -- int
  • max -- int

Returns the threshold as set by setUSBVoltageCallbackThreshold().

The following constants are available for this function:

  • BrickMaster.THRESHOLD_OPTION_OFF = 'x'
  • BrickMaster.THRESHOLD_OPTION_OUTSIDE = 'o'
  • BrickMaster.THRESHOLD_OPTION_INSIDE = 'i'
  • BrickMaster.THRESHOLD_OPTION_SMALLER = '<'
  • BrickMaster.THRESHOLD_OPTION_GREATER = '>'

New in version 2.0.5 (Firmware).

BrickMaster.setDebouncePeriod(debounce[, returnCallback][, errorCallback])
Parameters:
  • debounce -- int
Callback:

undefined

Sets the period in ms with which the threshold callbacks

are triggered, if the thresholds

keep being reached.

The default value is 100.

New in version 2.0.5 (Firmware).

BrickMaster.getDebouncePeriod([returnCallback][, errorCallback])
Callback:
  • debounce -- int

Returns the debounce period as set by setDebouncePeriod().

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 on() function of the device object. The first parameter is the callback ID and the second parameter the callback function:

master.on(BrickMaster.CALLBACK_EXAMPLE,
    function (param) {
        console.log(param);
    }
);

The available constants with inherent number and type of parameters are described below.

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.

BrickMaster.CALLBACK_STACK_CURRENT
Parameters:
  • current -- int

This callback is triggered periodically with the period that is set by setStackCurrentCallbackPeriod(). The parameter is the current of the sensor.

CALLBACK_STACK_CURRENT is only triggered if the current has changed since the last triggering.

New in version 2.0.5 (Firmware).

BrickMaster.CALLBACK_STACK_VOLTAGE
Parameters:
  • voltage -- int

This callback is triggered periodically with the period that is set by setStackVoltageCallbackPeriod(). The parameter is the voltage of the sensor.

CALLBACK_STACK_VOLTAGE is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

BrickMaster.CALLBACK_USB_VOLTAGE
Parameters:
  • voltage -- int

This callback is triggered periodically with the period that is set by setUSBVoltageCallbackPeriod(). The parameter is the USB voltage in mV.

CALLBACK_USB_VOLTAGE is only triggered if the USB voltage has changed since the last triggering.

Does not work with hardware version 2.1.

New in version 2.0.5 (Firmware).

BrickMaster.CALLBACK_STACK_CURRENT_REACHED
Parameters:
  • current -- int

This callback is triggered when the threshold as set by setStackCurrentCallbackThreshold() is reached. The parameter is the stack current in mA.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by setDebouncePeriod().

New in version 2.0.5 (Firmware).

BrickMaster.CALLBACK_STACK_VOLTAGE_REACHED
Parameters:
  • voltage -- int

This callback is triggered when the threshold as set by setStackVoltageCallbackThreshold() is reached. The parameter is the stack voltage in mV.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by setDebouncePeriod().

New in version 2.0.5 (Firmware).

BrickMaster.CALLBACK_USB_VOLTAGE_REACHED
Parameters:
  • voltage -- int

This callback is triggered when the threshold as set by setUSBVoltageCallbackThreshold() is reached. The parameter is the voltage of the sensor.

If the threshold keeps being reached, the callback is triggered periodically with the period as set by setDebouncePeriod().

New in version 2.0.5 (Firmware).

Constants

BrickMaster.DEVICE_IDENTIFIER

This constant is used to identify a Master Brick.

The getIdentity() function and the CALLBACK_ENUMERATE callback of the IP Connection have a device_identifier parameter to specify the Brick's or Bricklet's type.

Creative Commons Licence The content of this page is licensed under Creative Commons Attribution 3.0 Unported License.