Chip Award Winner
Product of the Year 2012
Chip Award

TCP/IP - IO-16 Bricklet

This is the API description for the TCP/IP protocol of the IO-16 Bricklet. General information on what this device does and the technical specifications can be found here.

A tutorial on how to test the IO-16 Bricklet and get the first examples running can be found here.

API

A general description of the TCP/IP protocol structure can be found here.

Basic Functions

IO16.set_port
Function ID:

1

Request:
  • port – char
  • value_mask – uint8
Response:

no response

Sets the output value (high or low) for a port (“a” or “b”) with a bitmask. The bitmask is 8 bit long, true refers to high and false refers to low.

For example: The value 0b00001111 will turn the pins 0-3 high and the pins 4-7 low for the specified port.

Note

This function does nothing for pins that are configured as input. Pull-up resistors can be switched on with set_port_configuration.

IO16.get_port
Function ID:

2

Request:
  • port – char
Response:
  • value_mask – uint8

Returns a bitmask of the values that are currently measured on the specified port. This function works if the pin is configured to input as well as if it is configured to output.

IO16.set_port_configuration
Function ID:

3

Request:
  • port – char
  • selection_mask – uint8
  • direction – char
  • value – bool
Response:

no response

Configures the value and direction of a specified port. Possible directions are “i” and “o” for input and output.

If the direction is configured as output, the value is either high or low (set as true or false).

If the direction is configured as input, the value is either pull-up or default (set as true or false).

For example:

  • (“a”, 0xFF, ‘i’, true) will set all pins of port a as input pull-up.
  • (“a”, 128, ‘i’, false) will set pin 7 of port a as input default (floating if nothing is connected).
  • (“b”, 3, ‘o’, false) will set pins 0 and 1 of port b as output low.
  • (“b”, 4, ‘o’, true) will set pin 2 of port b as output high.
IO16.get_port_configuration
Function ID:

4

Request:
  • port – char
Response:
  • direction_mask – uint8
  • value_mask – uint8

Returns a direction bitmask and a value bitmask for the specified port.

For example: A return value of 0b00001111 and 0b00110011 for direction and value means that:

  • pins 0 and 1 are configured as input pull-up,
  • pins 2 and 3 are configured as input default,
  • pins 4 and 5 are configured as output high
  • and pins 6 and 7 are configured as output low.

Advanced Functions

IO16.set_port_monoflop
Function ID:

10

Request:
  • port – char
  • selection_mask – uint8
  • value_mask – uint8
  • time – uint32
Response:

no response

Configures a monoflop of the pins specified by the second parameter as 8 bit long bitmask. The specified pins must be configured for output. Non-output pins will be ignored.

The third parameter is a bitmask with the desired value of the specified output pins (true means high and false means low).

The forth parameter indicates the time (in ms) that the pins should hold the value.

If this function is called with the parameters (‘a’, (1 << 0) | (1 << 3), (1 << 0), 1500): Pin 0 will get high and pin 3 will get low on port ‘a’. In 1.5s pin 0 will get low and pin 3 will get high again.

A monoflop can be used as a fail-safe mechanism. For example: Lets assume you have a RS485 bus and an IO-16 Bricklet connected to one of the slave stacks. You can now call this function every second, with a time parameter of two seconds and pin 0 set to high. Pin 0 will be high all the time. If now the RS485 connection is lost, then pin 0 will get low in at most two seconds.

New in version 1.1.2 (Plugin).

IO16.get_port_monoflop
Function ID:

11

Request:
  • port – char
  • pin – uint8
Response:
  • value – uint8
  • time – uint32
  • time_remaining – uint32

Returns (for the given pin) the current value and the time as set by set_port_monoflop as well as the remaining time until the value flips.

If the timer is not running currently, the remaining time will be returned as 0.

New in version 1.1.2 (Plugin).

IO16.set_selected_values
Function ID:

13

Request:
  • port – char
  • selection_mask – uint8
  • value_mask – uint8
Response:

no response

Sets the output value (high or low) for a port (“a” or “b” with a bitmask, according to the selection mask. The bitmask is 8 bit long, true refers to high and false refers to low.

For example: The values 0b11000000, 0b10000000 will turn pin 7 high and pin 6 low, pins 0-6 will remain untouched.

Note

This function does nothing for pins that are configured as input. Pull-up resistors can be switched on with SetConfiguration().

New in version 2.0.0 (Plugin).

IO16.get_identity
Function ID:

255

Request:

empty payload

Response:
  • uid – char[8]
  • connected_uid – char[8]
  • position – char
  • hardware_version – uint8[3]
  • firmware_version – uint8[3]
  • device_identifier – uint16

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

The position can be ‘a’, ‘b’, ‘c’ or ‘d’.

The device identifiers can be found here.

New in version 2.0.0 (Plugin).

Callback Configuration Functions

IO16.set_debounce_period
Function ID:

5

Request:
  • debounce – uint32
Response:

no response

Sets the debounce period of the CALLBACK_INTERRUPT callback in ms.

For example: If you set this value to 100, you will get the interrupt maximal every 100ms. This is necessary if something that bounces is connected to the IO-16 Bricklet, such as a button.

The default value is 100.

IO16.get_debounce_period
Function ID:

6

Request:

empty payload

Response:
  • debounce – uint32

Returns the debounce period as set by set_debounce_period.

IO16.set_port_interrupt
Function ID:

7

Request:
  • port – char
  • interrupt_mask – uint8
Response:

no response

Sets the pins on which an interrupt is activated with a bitmask. Interrupts are triggered on changes of the voltage level of the pin, i.e. changes from high to low and low to high.

For example: (‘a’, 129) will enable the interrupt for pins 0 and 7 of port a.

The interrupt is delivered with the callback CALLBACK_INTERRUPT.

IO16.get_port_interrupt
Function ID:

8

Request:
  • port – char
Response:
  • interrupt_mask – uint8

Returns the interrupt bitmask for the specified port as set by set_port_interrupt.

Callbacks

IO16.CALLBACK_INTERRUPT
Function ID:

9

Response:
  • port – char
  • interrupt_mask – uint8
  • value_mask – uint8

This callback is triggered whenever a change of the voltage level is detected on pins where the interrupt was activated with set_port_interrupt.

The values are the port, a bitmask that specifies which interrupts occurred and the current value bitmask of the port.

For example:

  • (“a”, 1, 1) means that on port a an interrupt on pin 0 occurred and currently pin 0 is high and pins 1-7 are low.
  • (“b”, 128, 254) means that on port b interrupts on pins 0 and 7 occurred and currently pin 0 is low and pins 1-7 are high.
IO16.CALLBACK_MONOFLOP_DONE
Function ID:

12

Response:
  • port – char
  • selection_mask – uint8
  • value_mask – uint8

This callback is triggered whenever a monoflop timer reaches 0. The response values contain the port, the involved pins and the current value of the pins (the value after the monoflop).

New in version 1.1.2 (Plugin).

Constants

IO16.DEVICE_IDENTIFIER
Value:28

This constant is used to identify a IO16 Bricklet.

The get_identity function and the CALLBACK_ENUMERATE callback of the IP Connection have a device_identifier parameter to specify the Brick’s or Bricklet’s type.

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