Go - Master Brick

This is the description of the Go 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 Go API bindings is part of their general description. Additional documentation can be found on godoc.org.

Examples

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

Stack Status

Download (example_stack_status.go)

 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
package main

import (
    "fmt"
    "github.com/Tinkerforge/go-api-bindings/ipconnection"
    "github.com/Tinkerforge/go-api-bindings/master_brick"
)

const ADDR string = "localhost:4223"
const UID string = "XXYYZZ" // Change XXYYZZ to the UID of your Master Brick.

func main() {
    ipcon := ipconnection.New()
    defer ipcon.Close()
    master, _ := master_brick.New(UID, &ipcon) // Create device object.

    ipcon.Connect(ADDR) // Connect to brickd.
    defer ipcon.Disconnect()
    // Don't use device before ipcon is connected.

    // Get current stack voltage.
    stackVoltage, _ := master.GetStackVoltage()
    fmt.Printf("Stack Voltage: %f V\n", float64(stackVoltage)/1000.0)

    // Get current stack current.
    stackCurrent, _ := master.GetStackCurrent()
    fmt.Printf("Stack Current: %f A\n", float64(stackCurrent)/1000.0)

    fmt.Print("Press enter to exit.")
    fmt.Scanln()
}

API

The Master Brick API is defined in the package github.com/Tinkerforge/go-api-bindings/master_brick

Nearly every function of the Go bindings can return an ipconnection.DeviceError, implementing the error interface. The error can have one of the following values:

  • ipconnection.DeviceErrorSuccess = 0
  • ipconnection.DeviceErrorInvalidParameter = 1
  • ipconnection.DeviceErrorFunctionNotSupported = 2
  • ipconnection.DeviceErrorUnknownError = 3

which correspond to the values returned from Bricks and Bricklets.

All functions listed below are thread-safe.

Basic Functions

func master_brick.New(uid string, ipcon *IPConnection) (device MasterBrick, err error)
Parameters:
  • uid – Type: string
  • ipcon – Type: *IPConnection
Returns:
  • device – Type: MasterBrick
  • err – Type: error

Creates a new MasterBrick object with the unique device ID uid and adds it to the IPConnection ipcon:

device, err := master_brick.New("YOUR_DEVICE_UID", &ipcon)

This device object can be used after the IPConnection has been connected.

func (*MasterBrick) GetStackVoltage() (voltage uint16, err error)
Returns:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
  • err – Type: error

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.

func (*MasterBrick) GetStackCurrent() (current uint16, err error)
Returns:
  • current – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1]
  • err – Type: error

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

func (*MasterBrick) SetExtensionType(extension uint8, exttype uint32) (err error)
Parameters:
  • extension – Type: uint8, Range: [0 to 1]
  • exttype – Type: uint32, Range: See constants
Returns:
  • err – Type: error

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

For exttype:

  • master_brick.ExtensionTypeChibi = 1
  • master_brick.ExtensionTypeRS485 = 2
  • master_brick.ExtensionTypeWifi = 3
  • master_brick.ExtensionTypeEthernet = 4
  • master_brick.ExtensionTypeWifi2 = 5
func (*MasterBrick) GetExtensionType(extension uint8) (exttype uint32, err error)
Parameters:
  • extension – Type: uint8, Range: [0 to 1]
Returns:
  • exttype – Type: uint32, Range: See constants
  • err – Type: error

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

The following constants are available for this function:

For exttype:

  • master_brick.ExtensionTypeChibi = 1
  • master_brick.ExtensionTypeRS485 = 2
  • master_brick.ExtensionTypeWifi = 3
  • master_brick.ExtensionTypeEthernet = 4
  • master_brick.ExtensionTypeWifi2 = 5
func (*MasterBrick) IsChibiPresent() (present bool, err error)
Returns:
  • present – Type: bool
  • err – Type: error

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

func (*MasterBrick) SetChibiAddress(address uint8) (err error)
Parameters:
  • address – Type: uint8, Range: [1 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetChibiAddress() (address uint8, err error)
Returns:
  • address – Type: uint8, Range: [1 to 255]
  • err – Type: error

Returns the address as set by SetChibiAddress().

func (*MasterBrick) SetChibiMasterAddress(address uint8) (err error)
Parameters:
  • address – Type: uint8, Range: [1 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetChibiMasterAddress() (address uint8, err error)
Returns:
  • address – Type: uint8, Range: [1 to 255]
  • err – Type: error

Returns the address as set by SetChibiMasterAddress().

func (*MasterBrick) SetChibiSlaveAddress(num uint8, address uint8) (err error)
Parameters:
  • num – Type: uint8, Range: [0 to 254]
  • address – Type: uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetChibiSlaveAddress(num uint8) (address uint8, err error)
Parameters:
  • num – Type: uint8, Range: [0 to 254]
Returns:
  • address – Type: uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) GetChibiSignalStrength() (signalStrength uint8, err error)
Returns:
  • signalStrength – Type: uint8, Unit: 1 dB, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) GetChibiErrorLog() (underrun uint16, crcError uint16, noAck uint16, overflow uint16, err error)
Returns:
  • underrun – Type: uint16, Range: [0 to 216 - 1]
  • crcError – Type: uint16, Range: [0 to 216 - 1]
  • noAck – Type: uint16, Range: [0 to 216 - 1]
  • overflow – Type: uint16, Range: [0 to 216 - 1]
  • err – Type: error

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.

func (*MasterBrick) SetChibiFrequency(frequency uint8) (err error)
Parameters:
  • frequency – Type: uint8, Range: See constants
Returns:
  • err – Type: error

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:

For frequency:

  • master_brick.ChibiFrequencyOQPSK868MHz = 0
  • master_brick.ChibiFrequencyOQPSK915MHz = 1
  • master_brick.ChibiFrequencyOQPSK780MHz = 2
  • master_brick.ChibiFrequencyBPSK40_915MHz = 3
func (*MasterBrick) GetChibiFrequency() (frequency uint8, err error)
Returns:
  • frequency – Type: uint8, Range: See constants
  • err – Type: error

Returns the frequency value as set by SetChibiFrequency().

The following constants are available for this function:

For frequency:

  • master_brick.ChibiFrequencyOQPSK868MHz = 0
  • master_brick.ChibiFrequencyOQPSK915MHz = 1
  • master_brick.ChibiFrequencyOQPSK780MHz = 2
  • master_brick.ChibiFrequencyBPSK40_915MHz = 3
func (*MasterBrick) SetChibiChannel(channel uint8) (err error)
Parameters:
  • channel – Type: uint8, Range: ?
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetChibiChannel() (channel uint8, err error)
Returns:
  • channel – Type: uint8, Range: ?
  • err – Type: error

Returns the channel as set by SetChibiChannel().

func (*MasterBrick) IsRS485Present() (present bool, err error)
Returns:
  • present – Type: bool
  • err – Type: error

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

func (*MasterBrick) SetRS485Address(address uint8) (err error)
Parameters:
  • address – Type: uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetRS485Address() (address uint8, err error)
Returns:
  • address – Type: uint8, Range: [0 to 255]
  • err – Type: error

Returns the address as set by SetRS485Address().

func (*MasterBrick) SetRS485SlaveAddress(num uint8, address uint8) (err error)
Parameters:
  • num – Type: uint8, Range: [0 to 255]
  • address – Type: uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetRS485SlaveAddress(num uint8) (address uint8, err error)
Parameters:
  • num – Type: uint8, Range: [0 to 255]
Returns:
  • address – Type: uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) GetRS485ErrorLog() (crcError uint16, err error)
Returns:
  • crcError – Type: uint16, Range: [0 to 216 - 1]
  • err – Type: error

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.

func (*MasterBrick) SetRS485Configuration(speed uint32, parity rune, stopbits uint8) (err error)
Parameters:
  • speed – Type: uint32, Unit: 1 Bd, Range: [0 to 232 - 1]
  • parity – Type: rune, Range: See constants
  • stopbits – Type: uint8, Range: [1 to 2]
Returns:
  • err – Type: error

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

For parity:

  • master_brick.RS485ParityNone = 'n'
  • master_brick.RS485ParityEven = 'e'
  • master_brick.RS485ParityOdd = 'o'
func (*MasterBrick) GetRS485Configuration() (speed uint32, parity rune, stopbits uint8, err error)
Returns:
  • speed – Type: uint32, Unit: 1 Bd, Range: [0 to 232 - 1]
  • parity – Type: rune, Range: See constants
  • stopbits – Type: uint8, Range: [1 to 2]
  • err – Type: error

Returns the configuration as set by SetRS485Configuration().

The following constants are available for this function:

For parity:

  • master_brick.RS485ParityNone = 'n'
  • master_brick.RS485ParityEven = 'e'
  • master_brick.RS485ParityOdd = 'o'
func (*MasterBrick) IsWifiPresent() (present bool, err error)
Returns:
  • present – Type: bool
  • err – Type: error

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

func (*MasterBrick) SetWifiConfiguration(ssid string, connection uint8, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, port uint16) (err error)
Parameters:
  • ssid – Type: string, Length: up to 32
  • connection – Type: uint8, Range: See constants
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
Returns:
  • err – Type: error

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

For connection:

  • master_brick.WifiConnectionDHCP = 0
  • master_brick.WifiConnectionStaticIP = 1
  • master_brick.WifiConnectionAccessPointDHCP = 2
  • master_brick.WifiConnectionAccessPointStaticIP = 3
  • master_brick.WifiConnectionAdHocDHCP = 4
  • master_brick.WifiConnectionAdHocStaticIP = 5
func (*MasterBrick) GetWifiConfiguration() (ssid string, connection uint8, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, port uint16, err error)
Returns:
  • ssid – Type: string, Length: up to 32
  • connection – Type: uint8, Range: See constants
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
  • err – Type: error

Returns the configuration as set by SetWifiConfiguration().

The following constants are available for this function:

For connection:

  • master_brick.WifiConnectionDHCP = 0
  • master_brick.WifiConnectionStaticIP = 1
  • master_brick.WifiConnectionAccessPointDHCP = 2
  • master_brick.WifiConnectionAccessPointStaticIP = 3
  • master_brick.WifiConnectionAdHocDHCP = 4
  • master_brick.WifiConnectionAdHocStaticIP = 5
func (*MasterBrick) SetWifiEncryption(encryption uint8, key string, keyIndex uint8, eapOptions uint8, caCertificateLength uint16, clientCertificateLength uint16, privateKeyLength uint16) (err error)
Parameters:
  • encryption – Type: uint8, Range: See constants
  • key – Type: string, Length: up to 50
  • keyIndex – Type: uint8, Range: [1 to 4]
  • eapOptions – Type: uint8, Range: See constants
  • caCertificateLength – Type: uint16, Unit: 1 B, Range: [0 to 1312]
  • clientCertificateLength – Type: uint16, Unit: 1 B, Range: [0 to 1312]
  • privateKeyLength – Type: uint16, Unit: 1 B, Range: [0 to 4320]
Returns:
  • err – Type: error

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 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:

For encryption:

  • master_brick.WifiEncryptionWPAWPA2 = 0
  • master_brick.WifiEncryptionWPAEnterprise = 1
  • master_brick.WifiEncryptionWEP = 2
  • master_brick.WifiEncryptionNoEncryption = 3

For eapOptions:

  • master_brick.WifiEAPOptionOuterAuthEAPFAST = 0
  • master_brick.WifiEAPOptionOuterAuthEAPTLS = 1
  • master_brick.WifiEAPOptionOuterAuthEAPTTLS = 2
  • master_brick.WifiEAPOptionOuterAuthEAPPEAP = 3
  • master_brick.WifiEAPOptionInnerAuthEAPMSCHAP = 0
  • master_brick.WifiEAPOptionInnerAuthEAPGTC = 4
  • master_brick.WifiEAPOptionCertTypeCACert = 0
  • master_brick.WifiEAPOptionCertTypeClientCert = 8
  • master_brick.WifiEAPOptionCertTypePrivateKey = 16
func (*MasterBrick) GetWifiEncryption() (encryption uint8, key string, keyIndex uint8, eapOptions uint8, caCertificateLength uint16, clientCertificateLength uint16, privateKeyLength uint16, err error)
Returns:
  • encryption – Type: uint8, Range: See constants
  • key – Type: string, Length: up to 50
  • keyIndex – Type: uint8, Range: [1 to 4]
  • eapOptions – Type: uint8, Range: See constants
  • caCertificateLength – Type: uint16, Range: [0 to 216 - 1]
  • clientCertificateLength – Type: uint16, Range: [0 to 216 - 1]
  • privateKeyLength – Type: uint16, Range: [0 to 216 - 1]
  • err – Type: error

Returns the encryption as set by SetWifiEncryption().

Note

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

The following constants are available for this function:

For encryption:

  • master_brick.WifiEncryptionWPAWPA2 = 0
  • master_brick.WifiEncryptionWPAEnterprise = 1
  • master_brick.WifiEncryptionWEP = 2
  • master_brick.WifiEncryptionNoEncryption = 3

For eapOptions:

  • master_brick.WifiEAPOptionOuterAuthEAPFAST = 0
  • master_brick.WifiEAPOptionOuterAuthEAPTLS = 1
  • master_brick.WifiEAPOptionOuterAuthEAPTTLS = 2
  • master_brick.WifiEAPOptionOuterAuthEAPPEAP = 3
  • master_brick.WifiEAPOptionInnerAuthEAPMSCHAP = 0
  • master_brick.WifiEAPOptionInnerAuthEAPGTC = 4
  • master_brick.WifiEAPOptionCertTypeCACert = 0
  • master_brick.WifiEAPOptionCertTypeClientCert = 8
  • master_brick.WifiEAPOptionCertTypePrivateKey = 16
func (*MasterBrick) GetWifiStatus() (macAddress [6]uint8, bssid [6]uint8, channel uint8, rssi int16, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, rxCount uint32, txCount uint32, state uint8, err error)
Returns:
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • bssid – Type: [6]uint8, Range: [0 to 255]
  • channel – Type: uint8, Range: ?
  • rssi – Type: int16, Range: [-215 to 215 - 1]
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • rxCount – Type: uint32, Range: [0 to 232 - 1]
  • txCount – Type: uint32, Range: [0 to 232 - 1]
  • state – Type: uint8, Range: See constants
  • err – Type: error

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:

For state:

  • master_brick.WifiStateDisassociated = 0
  • master_brick.WifiStateAssociated = 1
  • master_brick.WifiStateAssociating = 2
  • master_brick.WifiStateError = 3
  • master_brick.WifiStateNotInitializedYet = 255
func (*MasterBrick) RefreshWifiStatus() (err error)
Returns:
  • err – Type: error

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.

func (*MasterBrick) SetWifiCertificate(index uint16, data [32]uint8, dataLength uint8) (err error)
Parameters:
  • index – Type: uint16, Range: [0 to 1311, 10000 to 11311, 20000 to 24319, 65534 to 216 - 1]
  • data – Type: [32]uint8, Range: [0 to 255]
  • dataLength – Type: uint8, Unit: 1 B, Range: [0 to 32]
Returns:
  • err – Type: error

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.

func (*MasterBrick) GetWifiCertificate(index uint16) (data [32]uint8, dataLength uint8, err error)
Parameters:
  • index – Type: uint16, Range: [0 to 1311, 10000 to 11311, 20000 to 24319, 65534 to 216 - 1]
Returns:
  • data – Type: [32]uint8, Range: [0 to 255]
  • dataLength – Type: uint8, Range: [0 to 32]
  • err – Type: error

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

func (*MasterBrick) SetWifiPowerMode(mode uint8) (err error)
Parameters:
  • mode – Type: uint8, Range: See constants, Default: 0
Returns:
  • err – Type: error

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

For mode:

  • master_brick.WifiPowerModeFullSpeed = 0
  • master_brick.WifiPowerModeLowPower = 1
func (*MasterBrick) GetWifiPowerMode() (mode uint8, err error)
Returns:
  • mode – Type: uint8, Range: See constants, Default: 0
  • err – Type: error

Returns the power mode as set by SetWifiPowerMode().

The following constants are available for this function:

For mode:

  • master_brick.WifiPowerModeFullSpeed = 0
  • master_brick.WifiPowerModeLowPower = 1
func (*MasterBrick) GetWifiBufferInfo() (overflow uint32, lowWatermark uint16, used uint16, err error)
Returns:
  • overflow – Type: uint32, Range: [0 to 232 - 1]
  • lowWatermark – Type: uint16, Unit: 1 B, Range: [0 to 1500]
  • used – Type: uint16, Unit: 1 B, Range: [0 to 1500]
  • err – Type: error

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.

func (*MasterBrick) SetWifiRegulatoryDomain(domain uint8) (err error)
Parameters:
  • domain – Type: uint8, Range: See constants, Default: 1
Returns:
  • err – Type: error

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

For domain:

  • master_brick.WifiDomainChannel1To11 = 0
  • master_brick.WifiDomainChannel1To13 = 1
  • master_brick.WifiDomainChannel1To14 = 2
func (*MasterBrick) GetWifiRegulatoryDomain() (domain uint8, err error)
Returns:
  • domain – Type: uint8, Range: See constants, Default: 1
  • err – Type: error

Returns the regulatory domain as set by SetWifiRegulatoryDomain().

The following constants are available for this function:

For domain:

  • master_brick.WifiDomainChannel1To11 = 0
  • master_brick.WifiDomainChannel1To13 = 1
  • master_brick.WifiDomainChannel1To14 = 2
func (*MasterBrick) GetUSBVoltage() (voltage uint16, err error)
Returns:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
  • err – Type: error

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

func (*MasterBrick) SetLongWifiKey(key string) (err error)
Parameters:
  • key – Type: string, Length: up to 64
Returns:
  • err – Type: error

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

func (*MasterBrick) GetLongWifiKey() (key string, err error)
Returns:
  • key – Type: string, Length: up to 64
  • err – Type: error

Returns the encryption key as set by SetLongWifiKey().

Note

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

New in version 2.0.2 (Firmware).

func (*MasterBrick) SetWifiHostname(hostname string) (err error)
Parameters:
  • hostname – Type: string, Length: up to 16
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifiHostname() (hostname string, err error)
Returns:
  • hostname – Type: string, Length: up to 16
  • err – Type: error

Returns the hostname as set by SetWifiHostname().

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

New in version 2.0.5 (Firmware).

func (*MasterBrick) IsEthernetPresent() (present bool, err error)
Returns:
  • present – Type: bool
  • err – Type: error

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

func (*MasterBrick) SetEthernetConfiguration(connection uint8, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, port uint16) (err error)
Parameters:
  • connection – Type: uint8, Range: See constants
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
Returns:
  • err – Type: error

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

For connection:

  • master_brick.EthernetConnectionDHCP = 0
  • master_brick.EthernetConnectionStaticIP = 1

New in version 2.1.0 (Firmware).

func (*MasterBrick) GetEthernetConfiguration() (connection uint8, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, port uint16, err error)
Returns:
  • connection – Type: uint8, Range: See constants
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
  • err – Type: error

Returns the configuration as set by SetEthernetConfiguration().

The following constants are available for this function:

For connection:

  • master_brick.EthernetConnectionDHCP = 0
  • master_brick.EthernetConnectionStaticIP = 1

New in version 2.1.0 (Firmware).

func (*MasterBrick) GetEthernetStatus() (macAddress [6]uint8, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, rxCount uint32, txCount uint32, hostname string, err error)
Returns:
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • rxCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • txCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • hostname – Type: string, Length: up to 32
  • err – Type: error

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

func (*MasterBrick) SetEthernetHostname(hostname string) (err error)
Parameters:
  • hostname – Type: string, Length: up to 32
Returns:
  • err – Type: error

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

func (*MasterBrick) SetEthernetMACAddress(macAddress [6]uint8) (err error)
Parameters:
  • macAddress – Type: [6]uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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

func (*MasterBrick) SetEthernetWebsocketConfiguration(sockets uint8, port uint16) (err error)
Parameters:
  • sockets – Type: uint8, Range: [0 to 7], Default: 3
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4280
Returns:
  • err – Type: error

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

func (*MasterBrick) GetEthernetWebsocketConfiguration() (sockets uint8, port uint16, err error)
Returns:
  • sockets – Type: uint8, Range: [0 to 7], Default: 3
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4280
  • err – Type: error

Returns the configuration as set by SetEthernetConfiguration().

New in version 2.2.0 (Firmware).

func (*MasterBrick) SetEthernetAuthenticationSecret(secret string) (err error)
Parameters:
  • secret – Type: string, Length: up to 64, Default: ""
Returns:
  • err – Type: error

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

func (*MasterBrick) GetEthernetAuthenticationSecret() (secret string, err error)
Returns:
  • secret – Type: string, Length: up to 64, Default: ""
  • err – Type: error

Returns the authentication secret as set by SetEthernetAuthenticationSecret().

New in version 2.2.0 (Firmware).

func (*MasterBrick) SetWifiAuthenticationSecret(secret string) (err error)
Parameters:
  • secret – Type: string, Length: up to 64, Default: ""
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifiAuthenticationSecret() (secret string, err error)
Returns:
  • secret – Type: string, Length: up to 64, Default: ""
  • err – Type: error

Returns the authentication secret as set by SetWifiAuthenticationSecret().

New in version 2.2.0 (Firmware).

func (*MasterBrick) GetConnectionType() (connectionType uint8, err error)
Returns:
  • connectionType – Type: uint8, Range: See constants
  • err – Type: error

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

The following constants are available for this function:

For connectionType:

  • master_brick.ConnectionTypeNone = 0
  • master_brick.ConnectionTypeUSB = 1
  • master_brick.ConnectionTypeSPIStack = 2
  • master_brick.ConnectionTypeChibi = 3
  • master_brick.ConnectionTypeRS485 = 4
  • master_brick.ConnectionTypeWifi = 5
  • master_brick.ConnectionTypeEthernet = 6
  • master_brick.ConnectionTypeWifi2 = 7

New in version 2.4.0 (Firmware).

func (*MasterBrick) IsWifi2Present() (present bool, err error)
Returns:
  • present – Type: bool
  • err – Type: error

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

func (*MasterBrick) StartWifi2Bootloader() (result int8, err error)
Returns:
  • result – Type: int8, Range: [-128 to 127]
  • err – Type: error

Starts the bootloader of the WIFI Extension 2.0. Returns 0 on success. Afterwards the WriteWifi2SerialPort() and ReadWifi2SerialPort() 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 GetConnectionType() 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).

func (*MasterBrick) WriteWifi2SerialPort(data [60]uint8, length uint8) (result int8, err error)
Parameters:
  • data – Type: [60]uint8, Range: [0 to 255]
  • length – Type: uint8, Unit: 1 B, Range: [0 to 60]
Returns:
  • result – Type: int8, Range: [-128 to 127]
  • err – Type: error

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

func (*MasterBrick) ReadWifi2SerialPort(length uint8) (data [60]uint8, result uint8, err error)
Parameters:
  • length – Type: uint8, Range: [0 to 255]
Returns:
  • data – Type: [60]uint8, Range: [0 to 60]
  • result – Type: uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) SetWifi2AuthenticationSecret(secret string) (err error)
Parameters:
  • secret – Type: string, Length: up to 64
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifi2AuthenticationSecret() (secret string, err error)
Returns:
  • secret – Type: string, Length: up to 64
  • err – Type: error

Returns the WIFI authentication secret as set by SetWifi2AuthenticationSecret().

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2Configuration(port uint16, websocketPort uint16, websitePort uint16, phyMode uint8, sleepMode uint8, website uint8) (err error)
Parameters:
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
  • websocketPort – Type: uint16, Range: [0 to 216 - 1], Default: 4280
  • websitePort – Type: uint16, Range: [0 to 216 - 1], Default: 80
  • phyMode – Type: uint8, Range: See constants
  • sleepMode – Type: uint8, Range: [0 to 255]
  • website – Type: uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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

For phyMode:

  • master_brick.Wifi2PHYModeB = 0
  • master_brick.Wifi2PHYModeG = 1
  • master_brick.Wifi2PHYModeN = 2

New in version 2.4.0 (Firmware).

func (*MasterBrick) GetWifi2Configuration() (port uint16, websocketPort uint16, websitePort uint16, phyMode uint8, sleepMode uint8, website uint8, err error)
Returns:
  • port – Type: uint16, Range: [0 to 216 - 1], Default: 4223
  • websocketPort – Type: uint16, Range: [0 to 216 - 1], Default: 4280
  • websitePort – Type: uint16, Range: [0 to 216 - 1], Default: 80
  • phyMode – Type: uint8, Range: See constants
  • sleepMode – Type: uint8, Range: [0 to 255]
  • website – Type: uint8, Range: [0 to 255]
  • err – Type: error

Returns the general configuration as set by SetWifi2Configuration().

The following constants are available for this function:

For phyMode:

  • master_brick.Wifi2PHYModeB = 0
  • master_brick.Wifi2PHYModeG = 1
  • master_brick.Wifi2PHYModeN = 2

New in version 2.4.0 (Firmware).

func (*MasterBrick) GetWifi2Status() (clientEnabled bool, clientStatus uint8, clientIP [4]uint8, clientSubnetMask [4]uint8, clientGateway [4]uint8, clientMACAddress [6]uint8, clientRXCount uint32, clientTXCount uint32, clientRSSI int8, apEnabled bool, apIP [4]uint8, apSubnetMask [4]uint8, apGateway [4]uint8, apMACAddress [6]uint8, apRXCount uint32, apTXCount uint32, apConnectedCount uint8, err error)
Returns:
  • clientEnabled – Type: bool
  • clientStatus – Type: uint8, Range: See constants
  • clientIP – Type: [4]uint8, Range: [0 to 255]
  • clientSubnetMask – Type: [4]uint8, Range: [0 to 255]
  • clientGateway – Type: [4]uint8, Range: [0 to 255]
  • clientMACAddress – Type: [6]uint8, Range: [0 to 255]
  • clientRXCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • clientTXCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • clientRSSI – Type: int8, Range: [-128 to 127]
  • apEnabled – Type: bool
  • apIP – Type: [4]uint8, Range: [0 to 255]
  • apSubnetMask – Type: [4]uint8, Range: [0 to 255]
  • apGateway – Type: [4]uint8, Range: [0 to 255]
  • apMACAddress – Type: [6]uint8, Range: [0 to 255]
  • apRXCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • apTXCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • apConnectedCount – Type: uint8, Range: [0 to 255]
  • err – Type: error

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

The following constants are available for this function:

For clientStatus:

  • master_brick.Wifi2ClientStatusIdle = 0
  • master_brick.Wifi2ClientStatusConnecting = 1
  • master_brick.Wifi2ClientStatusWrongPassword = 2
  • master_brick.Wifi2ClientStatusNoAPFound = 3
  • master_brick.Wifi2ClientStatusConnectFailed = 4
  • master_brick.Wifi2ClientStatusGotIP = 5
  • master_brick.Wifi2ClientStatusUnknown = 255

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2ClientConfiguration(enable bool, ssid string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, macAddress [6]uint8, bssid [6]uint8) (err error)
Parameters:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • bssid – Type: [6]uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifi2ClientConfiguration() (enable bool, ssid string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, macAddress [6]uint8, bssid [6]uint8, err error)
Returns:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • bssid – Type: [6]uint8, Range: [0 to 255]
  • err – Type: error

Returns the client configuration as set by SetWifi2ClientConfiguration().

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2ClientHostname(hostname string) (err error)
Parameters:
  • hostname – Type: string, Length: up to 32
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifi2ClientHostname() (hostname string, err error)
Returns:
  • hostname – Type: string, Length: up to 32
  • err – Type: error

Returns the client hostname as set by SetWifi2ClientHostname().

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2ClientPassword(password string) (err error)
Parameters:
  • password – Type: string, Length: up to 64
Returns:
  • err – Type: error

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

To apply configuration changes to the WIFI Extension 2.0 the SaveWifi2Configuration() 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).

func (*MasterBrick) GetWifi2ClientPassword() (password string, err error)
Returns:
  • password – Type: string, Length: up to 64
  • err – Type: error

Returns the client password as set by SetWifi2ClientPassword().

Note

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

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2APConfiguration(enable bool, ssid string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, encryption uint8, hidden bool, channel uint8, macAddress [6]uint8) (err error)
Parameters:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255], Default: {0, 0, 0, 0}
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • encryption – Type: uint8, Range: See constants, Default: 4
  • hidden – Type: bool, Default: false
  • channel – Type: uint8, Range: [0 to 255], Default: 1
  • macAddress – Type: [6]uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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 SetWifi2APPassword() 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 SaveWifi2Configuration() 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 constants are available for this function:

For encryption:

  • master_brick.Wifi2APEncryptionOpen = 0
  • master_brick.Wifi2APEncryptionWEP = 1
  • master_brick.Wifi2APEncryptionWPAPSK = 2
  • master_brick.Wifi2APEncryptionWPA2PSK = 3
  • master_brick.Wifi2APEncryptionWPAWPA2PSK = 4

New in version 2.4.0 (Firmware).

func (*MasterBrick) GetWifi2APConfiguration() (enable bool, ssid string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, encryption uint8, hidden bool, channel uint8, macAddress [6]uint8, err error)
Returns:
  • enable – Type: bool, Default: true
  • ssid – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255], Default: {0, 0, 0, 0}
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • encryption – Type: uint8, Range: See constants, Default: 4
  • hidden – Type: bool, Default: false
  • channel – Type: uint8, Range: [0 to 255], Default: 1
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • err – Type: error

Returns the access point configuration as set by SetWifi2APConfiguration().

The following constants are available for this function:

For encryption:

  • master_brick.Wifi2APEncryptionOpen = 0
  • master_brick.Wifi2APEncryptionWEP = 1
  • master_brick.Wifi2APEncryptionWPAPSK = 2
  • master_brick.Wifi2APEncryptionWPA2PSK = 3
  • master_brick.Wifi2APEncryptionWPAWPA2PSK = 4

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2APPassword(password string) (err error)
Parameters:
  • password – Type: string, Length: up to 64
Returns:
  • err – Type: error

Sets the access point password (at least 8 and up to 63 chars) for the configured encryption mode, see SetWifi2APConfiguration().

To apply configuration changes to the WIFI Extension 2.0 the SaveWifi2Configuration() 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).

func (*MasterBrick) GetWifi2APPassword() (password string, err error)
Returns:
  • password – Type: string, Length: up to 64
  • err – Type: error

Returns the access point password as set by SetWifi2APPassword().

Note

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

New in version 2.4.0 (Firmware).

func (*MasterBrick) SaveWifi2Configuration() (result uint8, err error)
Returns:
  • result – Type: uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) GetWifi2FirmwareVersion() (firmwareVersion [3]uint8, err error)
Returns:
  • firmwareVersion – Type: [3]uint8
    • 0: major – Type: uint8, Range: [0 to 255]
    • 1: minor – Type: uint8, Range: [0 to 255]
    • 2: revision – Type: uint8, Range: [0 to 255]
  • err – Type: error

Returns the current version of the WIFI Extension 2.0 firmware.

New in version 2.4.0 (Firmware).

func (*MasterBrick) EnableWifi2StatusLED() (err error)
Returns:
  • err – Type: error

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

New in version 2.4.0 (Firmware).

func (*MasterBrick) DisableWifi2StatusLED() (err error)
Returns:
  • err – Type: error

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

New in version 2.4.0 (Firmware).

func (*MasterBrick) IsWifi2StatusLEDEnabled() (enabled bool, err error)
Returns:
  • enabled – Type: bool, Default: true
  • err – Type: error

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

New in version 2.4.0 (Firmware).

func (*MasterBrick) SetWifi2MeshConfiguration(enable bool, rootIP [4]uint8, rootSubnetMask [4]uint8, rootGateway [4]uint8, routerBSSID [6]uint8, groupID [6]uint8, groupSSIDPrefix string, gatewayIP [4]uint8, gatewayPort uint16) (err error)
Parameters:
  • enable – Type: bool, Default: false
  • rootIP – Type: [4]uint8, Range: [0 to 255], Default: {0, 0, 0, 0}
  • rootSubnetMask – Type: [4]uint8, Range: [0 to 255]
  • rootGateway – Type: [4]uint8, Range: [0 to 255]
  • routerBSSID – Type: [6]uint8, Range: [0 to 255]
  • groupID – Type: [6]uint8, Range: [0 to 255]
  • groupSSIDPrefix – Type: string, Length: up to 16
  • gatewayIP – Type: [4]uint8, Range: [0 to 255]
  • gatewayPort – Type: uint16, Range: [0 to 216 - 1]
Returns:
  • err – Type: error

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 SetWifi2MeshRouterSSID(). 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 SaveWifi2Configuration() 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).

func (*MasterBrick) GetWifi2MeshConfiguration() (enable bool, rootIP [4]uint8, rootSubnetMask [4]uint8, rootGateway [4]uint8, routerBSSID [6]uint8, groupID [6]uint8, groupSSIDPrefix string, gatewayIP [4]uint8, gatewayPort uint16, err error)
Returns:
  • enable – Type: bool, Default: false
  • rootIP – Type: [4]uint8, Range: [0 to 255], Default: {0, 0, 0, 0}
  • rootSubnetMask – Type: [4]uint8, Range: [0 to 255]
  • rootGateway – Type: [4]uint8, Range: [0 to 255]
  • routerBSSID – Type: [6]uint8, Range: [0 to 255]
  • groupID – Type: [6]uint8, Range: [0 to 255]
  • groupSSIDPrefix – Type: string, Length: up to 16
  • gatewayIP – Type: [4]uint8, Range: [0 to 255]
  • gatewayPort – Type: uint16, Range: [0 to 216 - 1]
  • err – Type: error

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh configuration as set by SetWifi2MeshConfiguration().

New in version 2.4.2 (Firmware).

func (*MasterBrick) SetWifi2MeshRouterSSID(ssid string) (err error)
Parameters:
  • ssid – Type: string, Length: up to 32
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifi2MeshRouterSSID() (ssid string, err error)
Returns:
  • ssid – Type: string, Length: up to 32
  • err – Type: error

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh router SSID as set by SetWifi2MeshRouterSSID().

New in version 2.4.2 (Firmware).

func (*MasterBrick) SetWifi2MeshRouterPassword(password string) (err error)
Parameters:
  • password – Type: string, Length: up to 64
Returns:
  • err – Type: error

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

func (*MasterBrick) GetWifi2MeshRouterPassword() (password string, err error)
Returns:
  • password – Type: string, Length: up to 64
  • err – Type: error

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the mesh router password as set by SetWifi2MeshRouterPassword().

New in version 2.4.2 (Firmware).

func (*MasterBrick) GetWifi2MeshCommonStatus() (status uint8, rootNode bool, rootCandidate bool, connectedNodes uint16, rxCount uint32, txCount uint32, err error)
Returns:
  • status – Type: uint8, Range: See constants
  • rootNode – Type: bool
  • rootCandidate – Type: bool
  • connectedNodes – Type: uint16, Range: [0 to 216 - 1]
  • rxCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • txCount – Type: uint32, Unit: 1 B, Range: [0 to 232 - 1]
  • err – Type: error

Requires WIFI Extension 2.0 firmware 2.1.0.

Returns the common mesh status of the WIFI Extension 2.0.

The following constants are available for this function:

For status:

  • master_brick.Wifi2MeshStatusDisabled = 0
  • master_brick.Wifi2MeshStatusWIFIConnecting = 1
  • master_brick.Wifi2MeshStatusGotIP = 2
  • master_brick.Wifi2MeshStatusMeshLocal = 3
  • master_brick.Wifi2MeshStatusMeshOnline = 4
  • master_brick.Wifi2MeshStatusAPAvailable = 5
  • master_brick.Wifi2MeshStatusAPSetup = 6
  • master_brick.Wifi2MeshStatusLeafAvailable = 7

New in version 2.4.2 (Firmware).

func (*MasterBrick) GetWifi2MeshClientStatus() (hostname string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, macAddress [6]uint8, err error)
Returns:
  • hostname – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) GetWifi2MeshAPStatus() (ssid string, ip [4]uint8, subnetMask [4]uint8, gateway [4]uint8, macAddress [6]uint8, err error)
Returns:
  • ssid – Type: string, Length: up to 32
  • ip – Type: [4]uint8, Range: [0 to 255]
  • subnetMask – Type: [4]uint8, Range: [0 to 255]
  • gateway – Type: [4]uint8, Range: [0 to 255]
  • macAddress – Type: [6]uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) SetSPITFPBaudrateConfig(enableDynamicBaudrate bool, minimumDynamicBaudrate uint32) (err error)
Parameters:
  • enableDynamicBaudrate – Type: bool, Default: true
  • minimumDynamicBaudrate – Type: uint32, Unit: 1 Bd, Range: [400000 to 2000000], Default: 400000
Returns:
  • err – Type: error

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 SetSPITFPBaudrate(). If the dynamic baudrate is disabled, the baudrate as set by SetSPITFPBaudrate() will be used statically.

New in version 2.4.6 (Firmware).

func (*MasterBrick) GetSPITFPBaudrateConfig() (enableDynamicBaudrate bool, minimumDynamicBaudrate uint32, err error)
Returns:
  • enableDynamicBaudrate – Type: bool, Default: true
  • minimumDynamicBaudrate – Type: uint32, Unit: 1 Bd, Range: [400000 to 2000000], Default: 400000
  • err – Type: error

Returns the baudrate config, see SetSPITFPBaudrateConfig().

New in version 2.4.6 (Firmware).

func (*MasterBrick) GetSendTimeoutCount(communicationMethod uint8) (timeoutCount uint32, err error)
Parameters:
  • communicationMethod – Type: uint8, Range: See constants
Returns:
  • timeoutCount – Type: uint32, Range: [0 to 232 - 1]
  • err – Type: error

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

For communicationMethod:

  • master_brick.CommunicationMethodNone = 0
  • master_brick.CommunicationMethodUSB = 1
  • master_brick.CommunicationMethodSPIStack = 2
  • master_brick.CommunicationMethodChibi = 3
  • master_brick.CommunicationMethodRS485 = 4
  • master_brick.CommunicationMethodWIFI = 5
  • master_brick.CommunicationMethodEthernet = 6
  • master_brick.CommunicationMethodWIFIV2 = 7

New in version 2.4.3 (Firmware).

func (*MasterBrick) SetSPITFPBaudrate(brickletPort rune, baudrate uint32) (err error)
Parameters:
  • brickletPort – Type: rune, Range: ['a' to 'd']
  • baudrate – Type: uint32, Unit: 1 Bd, Range: [400000 to 2000000], Default: 1400000
Returns:
  • err – Type: error

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 GetSPITFPErrorCount()) you can decrease the baudrate.

If the dynamic baudrate feature is enabled, the baudrate set by this function corresponds to the maximum baudrate (see SetSPITFPBaudrateConfig()).

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

func (*MasterBrick) GetSPITFPBaudrate(brickletPort rune) (baudrate uint32, err error)
Parameters:
  • brickletPort – Type: rune, Range: ['a' to 'd']
Returns:
  • baudrate – Type: uint32, Unit: 1 Bd, Range: [400000 to 2000000], Default: 1400000
  • err – Type: error

Returns the baudrate for a given Bricklet port, see SetSPITFPBaudrate().

New in version 2.4.3 (Firmware).

func (*MasterBrick) GetSPITFPErrorCount(brickletPort rune) (errorCountACKChecksum uint32, errorCountMessageChecksum uint32, errorCountFrame uint32, errorCountOverflow uint32, err error)
Parameters:
  • brickletPort – Type: rune, Range: ['a' to 'd']
Returns:
  • errorCountACKChecksum – Type: uint32, Range: [0 to 232 - 1]
  • errorCountMessageChecksum – Type: uint32, Range: [0 to 232 - 1]
  • errorCountFrame – Type: uint32, Range: [0 to 232 - 1]
  • errorCountOverflow – Type: uint32, Range: [0 to 232 - 1]
  • err – Type: error

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

func (*MasterBrick) EnableStatusLED() (err error)
Returns:
  • err – Type: error

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

func (*MasterBrick) DisableStatusLED() (err error)
Returns:
  • err – Type: error

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

func (*MasterBrick) IsStatusLEDEnabled() (enabled bool, err error)
Returns:
  • enabled – Type: bool, Default: true
  • err – Type: error

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

New in version 2.3.2 (Firmware).

func (*MasterBrick) GetChipTemperature() (temperature int16, err error)
Returns:
  • temperature – Type: int16, Unit: 1/10 °C, Range: [-215 to 215 - 1]
  • err – Type: error

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.

func (*MasterBrick) Reset() (err error)
Returns:
  • err – Type: error

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!

func (*MasterBrick) GetIdentity() (uid string, connectedUid string, position rune, hardwareVersion [3]uint8, firmwareVersion [3]uint8, deviceIdentifier uint16, err error)
Returns:
  • uid – Type: string, Length: up to 8
  • connectedUid – Type: string, Length: up to 8
  • position – Type: rune, Range: ['0' to '8']
  • hardwareVersion – Type: [3]uint8
    • 0: major – Type: uint8, Range: [0 to 255]
    • 1: minor – Type: uint8, Range: [0 to 255]
    • 2: revision – Type: uint8, Range: [0 to 255]
  • firmwareVersion – Type: [3]uint8
    • 0: major – Type: uint8, Range: [0 to 255]
    • 1: minor – Type: uint8, Range: [0 to 255]
    • 2: revision – Type: uint8, Range: [0 to 255]
  • deviceIdentifier – Type: uint16, Range: [0 to 216 - 1]
  • err – Type: error

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. There is also a constant for the device identifier of this Brick.

Callback Configuration Functions

func (*MasterBrick) SetStackCurrentCallbackPeriod(period uint32) (err error)
Parameters:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Returns:
  • err – Type: error

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

The StackCurrentCallback callback is only triggered if the current has changed since the last triggering.

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetStackCurrentCallbackPeriod() (period uint32, err error)
Returns:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
  • err – Type: error

Returns the period as set by SetStackCurrentCallbackPeriod().

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetStackVoltageCallbackPeriod(period uint32) (err error)
Parameters:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Returns:
  • err – Type: error

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

The StackVoltageCallback callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetStackVoltageCallbackPeriod() (period uint32, err error)
Returns:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
  • err – Type: error

Returns the period as set by SetStackVoltageCallbackPeriod().

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetUSBVoltageCallbackPeriod(period uint32) (err error)
Parameters:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
Returns:
  • err – Type: error

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

The USBVoltageCallback callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetUSBVoltageCallbackPeriod() (period uint32, err error)
Returns:
  • period – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 0
  • err – Type: error

Returns the period as set by SetUSBVoltageCallbackPeriod().

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetStackCurrentCallbackThreshold(option rune, min uint16, max uint16) (err error)
Parameters:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
Returns:
  • err – Type: error

Sets the thresholds for the StackCurrentReachedCallback 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 constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetStackCurrentCallbackThreshold() (option rune, min uint16, max uint16, err error)
Returns:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1], Default: 0
  • err – Type: error

Returns the threshold as set by SetStackCurrentCallbackThreshold().

The following constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetStackVoltageCallbackThreshold(option rune, min uint16, max uint16) (err error)
Parameters:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
Returns:
  • err – Type: error

Sets the thresholds for the StackVoltageReachedCallback 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 constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetStackVoltageCallbackThreshold() (option rune, min uint16, max uint16, err error)
Returns:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • err – Type: error

Returns the threshold as set by SetStackVoltageCallbackThreshold().

The following constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetUSBVoltageCallbackThreshold(option rune, min uint16, max uint16) (err error)
Parameters:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
Returns:
  • err – Type: error

Sets the thresholds for the USBVoltageReachedCallback 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 constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetUSBVoltageCallbackThreshold() (option rune, min uint16, max uint16, err error)
Returns:
  • option – Type: rune, Range: See constants, Default: 'x'
  • min – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • max – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1], Default: 0
  • err – Type: error

Returns the threshold as set by SetUSBVoltageCallbackThreshold().

The following constants are available for this function:

For option:

  • master_brick.ThresholdOptionOff = 'x'
  • master_brick.ThresholdOptionOutside = 'o'
  • master_brick.ThresholdOptionInside = 'i'
  • master_brick.ThresholdOptionSmaller = '<'
  • master_brick.ThresholdOptionGreater = '>'

New in version 2.0.5 (Firmware).

func (*MasterBrick) SetDebouncePeriod(debounce uint32) (err error)
Parameters:
  • debounce – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 100
Returns:
  • err – Type: error

Sets the period with which the threshold callbacks

are triggered, if the thresholds

keep being reached.

New in version 2.0.5 (Firmware).

func (*MasterBrick) GetDebouncePeriod() (debounce uint32, err error)
Returns:
  • debounce – Type: uint32, Unit: 1 ms, Range: [0 to 232 - 1], Default: 100
  • err – Type: error

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 corresponding Register*Callback function, which returns a unique callback ID. This ID can be used to deregister the callback later with the corresponding Deregister*Callback function.

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.

func (*MasterBrick) RegisterStackCurrentCallback(func(current uint16)) (registrationId uint64)
Callback Parameters:
  • current – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

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

The StackCurrentCallback callback is only triggered if the current has changed since the last triggering.

New in version 2.0.5 (Firmware).

func (*MasterBrick) RegisterStackVoltageCallback(func(voltage uint16)) (registrationId uint64)
Callback Parameters:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

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

The StackVoltageCallback callback is only triggered if the voltage has changed since the last triggering.

New in version 2.0.5 (Firmware).

func (*MasterBrick) RegisterUSBVoltageCallback(func(voltage uint16)) (registrationId uint64)
Callback Parameters:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

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

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

func (*MasterBrick) RegisterStackCurrentReachedCallback(func(current uint16)) (registrationId uint64)
Callback Parameters:
  • current – Type: uint16, Unit: 1 mA, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

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

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

func (*MasterBrick) RegisterStackVoltageReachedCallback(func(voltage uint16)) (registrationId uint64)
Callback Parameters:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

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

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

func (*MasterBrick) RegisterUSBVoltageReachedCallback(func(voltage uint16)) (registrationId uint64)
Callback Parameters:
  • voltage – Type: uint16, Unit: 1 mV, Range: [0 to 216 - 1]
Returns:
  • registrationId – Type: uint64

This callback is triggered when the threshold as set by SetUSBVoltageCallbackThreshold() is reached. The callback 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).

Virtual Functions

Virtual functions don't communicate with the device itself, but operate only on the API bindings device object. They can be called without the corresponding IP Connection object being connected.

func (*MasterBrick) GetAPIVersion() (apiVersion [3]uint8, err error)
Returns:
  • apiVersion – Type: [3]uint8
    • 0: major – Type: uint8, Range: [0 to 255]
    • 1: minor – Type: uint8, Range: [0 to 255]
    • 2: revision – Type: uint8, Range: [0 to 255]
  • err – Type: error

Returns the version of the API definition 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.

func (*MasterBrick) GetResponseExpected(functionId uint8) (responseExpected bool, err error)
Parameters:
  • functionId – Type: uint8, Range: See constants
Returns:
  • responseExpected – Type: bool
  • err – Type: error

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 sent and errors are silently ignored, because they cannot be detected.

The following constants are available for this function:

For functionId:

  • master_brick.FunctionSetExtensionType = 3
  • master_brick.FunctionSetChibiAddress = 6
  • master_brick.FunctionSetChibiMasterAddress = 8
  • master_brick.FunctionSetChibiSlaveAddress = 10
  • master_brick.FunctionSetChibiFrequency = 14
  • master_brick.FunctionSetChibiChannel = 16
  • master_brick.FunctionSetRS485Address = 19
  • master_brick.FunctionSetRS485SlaveAddress = 21
  • master_brick.FunctionSetRS485Configuration = 24
  • master_brick.FunctionSetWifiConfiguration = 27
  • master_brick.FunctionSetWifiEncryption = 29
  • master_brick.FunctionRefreshWifiStatus = 32
  • master_brick.FunctionSetWifiCertificate = 33
  • master_brick.FunctionSetWifiPowerMode = 35
  • master_brick.FunctionSetWifiRegulatoryDomain = 38
  • master_brick.FunctionSetLongWifiKey = 41
  • master_brick.FunctionSetWifiHostname = 43
  • master_brick.FunctionSetStackCurrentCallbackPeriod = 45
  • master_brick.FunctionSetStackVoltageCallbackPeriod = 47
  • master_brick.FunctionSetUSBVoltageCallbackPeriod = 49
  • master_brick.FunctionSetStackCurrentCallbackThreshold = 51
  • master_brick.FunctionSetStackVoltageCallbackThreshold = 53
  • master_brick.FunctionSetUSBVoltageCallbackThreshold = 55
  • master_brick.FunctionSetDebouncePeriod = 57
  • master_brick.FunctionSetEthernetConfiguration = 66
  • master_brick.FunctionSetEthernetHostname = 69
  • master_brick.FunctionSetEthernetMACAddress = 70
  • master_brick.FunctionSetEthernetWebsocketConfiguration = 71
  • master_brick.FunctionSetEthernetAuthenticationSecret = 73
  • master_brick.FunctionSetWifiAuthenticationSecret = 75
  • master_brick.FunctionSetWifi2AuthenticationSecret = 82
  • master_brick.FunctionSetWifi2Configuration = 84
  • master_brick.FunctionSetWifi2ClientConfiguration = 87
  • master_brick.FunctionSetWifi2ClientHostname = 89
  • master_brick.FunctionSetWifi2ClientPassword = 91
  • master_brick.FunctionSetWifi2APConfiguration = 93
  • master_brick.FunctionSetWifi2APPassword = 95
  • master_brick.FunctionEnableWifi2StatusLED = 99
  • master_brick.FunctionDisableWifi2StatusLED = 100
  • master_brick.FunctionSetWifi2MeshConfiguration = 102
  • master_brick.FunctionSetWifi2MeshRouterSSID = 104
  • master_brick.FunctionSetWifi2MeshRouterPassword = 106
  • master_brick.FunctionSetBrickletsEnabled = 113
  • master_brick.FunctionSetSPITFPBaudrateConfig = 231
  • master_brick.FunctionSetSPITFPBaudrate = 234
  • master_brick.FunctionEnableStatusLED = 238
  • master_brick.FunctionDisableStatusLED = 239
  • master_brick.FunctionReset = 243
  • master_brick.FunctionWriteBrickletPlugin = 246
func (*MasterBrick) SetResponseExpected(functionId uint8, responseExpected bool) (err error)
Parameters:
  • functionId – Type: uint8, Range: See constants
  • responseExpected – Type: bool
Returns:
  • err – Type: error

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.

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 sent and errors are silently ignored, because they cannot be detected.

The following constants are available for this function:

For functionId:

  • master_brick.FunctionSetExtensionType = 3
  • master_brick.FunctionSetChibiAddress = 6
  • master_brick.FunctionSetChibiMasterAddress = 8
  • master_brick.FunctionSetChibiSlaveAddress = 10
  • master_brick.FunctionSetChibiFrequency = 14
  • master_brick.FunctionSetChibiChannel = 16
  • master_brick.FunctionSetRS485Address = 19
  • master_brick.FunctionSetRS485SlaveAddress = 21
  • master_brick.FunctionSetRS485Configuration = 24
  • master_brick.FunctionSetWifiConfiguration = 27
  • master_brick.FunctionSetWifiEncryption = 29
  • master_brick.FunctionRefreshWifiStatus = 32
  • master_brick.FunctionSetWifiCertificate = 33
  • master_brick.FunctionSetWifiPowerMode = 35
  • master_brick.FunctionSetWifiRegulatoryDomain = 38
  • master_brick.FunctionSetLongWifiKey = 41
  • master_brick.FunctionSetWifiHostname = 43
  • master_brick.FunctionSetStackCurrentCallbackPeriod = 45
  • master_brick.FunctionSetStackVoltageCallbackPeriod = 47
  • master_brick.FunctionSetUSBVoltageCallbackPeriod = 49
  • master_brick.FunctionSetStackCurrentCallbackThreshold = 51
  • master_brick.FunctionSetStackVoltageCallbackThreshold = 53
  • master_brick.FunctionSetUSBVoltageCallbackThreshold = 55
  • master_brick.FunctionSetDebouncePeriod = 57
  • master_brick.FunctionSetEthernetConfiguration = 66
  • master_brick.FunctionSetEthernetHostname = 69
  • master_brick.FunctionSetEthernetMACAddress = 70
  • master_brick.FunctionSetEthernetWebsocketConfiguration = 71
  • master_brick.FunctionSetEthernetAuthenticationSecret = 73
  • master_brick.FunctionSetWifiAuthenticationSecret = 75
  • master_brick.FunctionSetWifi2AuthenticationSecret = 82
  • master_brick.FunctionSetWifi2Configuration = 84
  • master_brick.FunctionSetWifi2ClientConfiguration = 87
  • master_brick.FunctionSetWifi2ClientHostname = 89
  • master_brick.FunctionSetWifi2ClientPassword = 91
  • master_brick.FunctionSetWifi2APConfiguration = 93
  • master_brick.FunctionSetWifi2APPassword = 95
  • master_brick.FunctionEnableWifi2StatusLED = 99
  • master_brick.FunctionDisableWifi2StatusLED = 100
  • master_brick.FunctionSetWifi2MeshConfiguration = 102
  • master_brick.FunctionSetWifi2MeshRouterSSID = 104
  • master_brick.FunctionSetWifi2MeshRouterPassword = 106
  • master_brick.FunctionSetBrickletsEnabled = 113
  • master_brick.FunctionSetSPITFPBaudrateConfig = 231
  • master_brick.FunctionSetSPITFPBaudrate = 234
  • master_brick.FunctionEnableStatusLED = 238
  • master_brick.FunctionDisableStatusLED = 239
  • master_brick.FunctionReset = 243
  • master_brick.FunctionWriteBrickletPlugin = 246
func (*MasterBrick) SetResponseExpectedAll(responseExpected bool) (err error)
Parameters:
  • responseExpected – Type: bool
Returns:
  • err – Type: error

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

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.

func (*MasterBrick) SetBrickletXMCFlashConfig(config uint32, parameter1 uint32, parameter2 uint32, data [52]uint8) (returnValue uint32, returnData [60]uint8, err error)
Parameters:
  • config – Type: uint32, Range: [0 to 232 - 1]
  • parameter1 – Type: uint32, Range: [0 to 232 - 1]
  • parameter2 – Type: uint32, Range: [0 to 232 - 1]
  • data – Type: [52]uint8, Range: [0 to 255]
Returns:
  • returnValue – Type: uint32, Range: [0 to 232 - 1]
  • returnData – Type: [60]uint8, Range: [0 to 255]
  • err – Type: error

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

func (*MasterBrick) SetBrickletXMCFlashData(data [64]uint8) (returnData uint32, err error)
Parameters:
  • data – Type: [64]uint8, Range: [0 to 255]
Returns:
  • returnData – Type: uint32, Range: [0 to 232 - 1]
  • err – Type: error

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

func (*MasterBrick) SetBrickletsEnabled(brickletsEnabled bool) (err error)
Parameters:
  • brickletsEnabled – Type: bool
Returns:
  • err – Type: error

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

func (*MasterBrick) GetBrickletsEnabled() (brickletsEnabled bool, err error)
Returns:
  • brickletsEnabled – Type: bool
  • err – Type: error

Returns true if the Bricklets are enabled, false otherwise.

New in version 2.5.0 (Firmware).

func (*MasterBrick) GetProtocol1BrickletName(port rune) (protocolVersion uint8, firmwareVersion [3]uint8, name string, err error)
Parameters:
  • port – Type: rune, Range: ['a' to 'd']
Returns:
  • protocolVersion – Type: uint8, Range: [0 to 255]
  • firmwareVersion – Type: [3]uint8
    • 0: major – Type: uint8, Range: [0 to 255]
    • 1: minor – Type: uint8, Range: [0 to 255]
    • 2: revision – Type: uint8, Range: [0 to 255]
  • name – Type: string, Length: up to 40
  • err – Type: error

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.

func (*MasterBrick) WriteBrickletPlugin(port rune, offset uint8, chunk [32]uint8) (err error)
Parameters:
  • port – Type: rune, Range: ['a' to 'd']
  • offset – Type: uint8, Range: [0 to 255]
  • chunk – Type: [32]uint8, Range: [0 to 255]
Returns:
  • err – Type: error

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.

func (*MasterBrick) ReadBrickletPlugin(port rune, offset uint8) (chunk [32]uint8, err error)
Parameters:
  • port – Type: rune, Range: ['a' to 'd']
  • offset – Type: uint8, Range: [0 to 255]
Returns:
  • chunk – Type: [32]uint8, Range: [0 to 255]
  • err – Type: error

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.

Constants

master_brick.DeviceIdentifier

This constant is used to identify a Master Brick.

The GetIdentity() function and the (*IPConnection) RegisterEnumerateCallback callback of the IPConnection have a deviceIdentifier parameter to specify the Brick's or Bricklet's type.

master_brick.DeviceDisplayName

This constant represents the human readable name of a Master Brick.