Shell - LCD 16x2 Bricklet

This is the description of the Shell API bindings for the LCD 16x2 Bricklet. General information and technical specifications for the LCD 16x2 Bricklet are summarized in its hardware description.

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

Examples

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

Hello World

Download (example-hello-world.sh)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this

uid=XYZ # Change XYZ to the UID of your LCD 16x2 Bricklet

# Turn backlight on
tinkerforge call lcd-16x2-bricklet $uid backlight-on

# Write "Hello World"
tinkerforge call lcd-16x2-bricklet $uid write-line 0 0 "Hello World"

Button Callback

Download (example-button-callback.sh)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this

uid=XYZ # Change XYZ to the UID of your LCD 16x2 Bricklet

# Handle incoming button pressed callbacks
tinkerforge dispatch lcd-16x2-bricklet $uid button-pressed &

# Handle incoming button released callbacks
tinkerforge dispatch lcd-16x2-bricklet $uid button-released &

echo "Press key to exit"; read dummy

kill -- -$$ # Stop callback dispatch in background

Unicode

Download (example-unicode.sh)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this

uid=XYZ # Change XYZ to the UID of your LCD 16x2 Bricklet

# Turn backlight on
tinkerforge call lcd-16x2-bricklet $uid backlight-on

# Write a string using sed to map to the LCD charset
# Note: This assumes that the shell supports UTF-8
tinkerforge call lcd-16x2-bricklet $uid write-line 0 0\
 "`echo 'Stromstärke: 5µA' | sed 'y/\o134~¥→←°αÄäßεµςρ√¹¤¢ⱠñÖöϴ∞ΩÜüΣπ÷■/\o244\o55\o134\o176\o177\o337\o340\o341\o341\o342\o343\o344\o345\o346\o350\o351\o353\o354\o355\o356\o357\o357\o362\o363\o364\o365\o365\o366\o367\o375\o377/'`"

# Write a string directly including characters from the LCD charset
tinkerforge call lcd-16x2-bricklet $uid write-line 1 0\
 "`printf 'Drehzahl: 1000s\xe9'`"

API

Possible exit codes for all tinkerforge commands are:

  • 1: interrupted (ctrl+c)
  • 2: syntax error
  • 21: Python 2.5 or newer is required
  • 22: Python argparse module is missing
  • 23: socket error
  • 24: other exception
  • 25: invalid placeholder in format string
  • 26: authentication error
  • 201: timeout occurred
  • 209: invalid argument value
  • 210: function is not supported
  • 211: unknown error

Command Structure

The common options of the call and dispatch commands are documented here. The specific command structure is shown below.

tinkerforge call lcd-16x2-bricklet [<option>..] <uid> <function> [<argument>..]
Parameters:
  • <uid> – Type: String
  • <function> – Type: String

The call command is used to call a function of the LCD 16x2 Bricklet. It can take several options:

  • --help shows help for the specific call command and exits
  • --list-functions shows a list of known functions of the LCD 16x2 Bricklet and exits
tinkerforge dispatch lcd-16x2-bricklet [<option>..] <uid> <callback>
Parameters:
  • <uid> – Type: String
  • <callback> – Type: String

The dispatch command is used to dispatch a callback of the LCD 16x2 Bricklet. It can take several options:

  • --help shows help for the specific dispatch command and exits
  • --list-callbacks shows a list of known callbacks of the LCD 16x2 Bricklet and exits
tinkerforge call lcd-16x2-bricklet <uid> <function> [<option>..] [<argument>..]
Parameters:
  • <uid> – Type: String
  • <function> – Type: String

The <function> to be called can take different options depending of its kind. All functions can take the following options:

  • --help shows help for the specific function and exits

Getter functions can take the following options:

  • --execute <command> shell command line to execute for each incoming response (see section about output formatting for details)

Setter functions can take the following options:

  • --expect-response requests response and waits for it

The --expect-response option for setter functions allows to detect timeouts and other error conditions calls of setters as well. The device will then send a response for this purpose. If this option is not given for a setter function then no response is sent and errors are silently ignored, because they cannot be detected.

tinkerforge dispatch lcd-16x2-bricklet <uid> <callback> [<option>..]
Parameters:
  • <uid> – Type: String
  • <callback> – Type: String

The <callback> to be dispatched can take several options:

  • --help shows help for the specific callback and exits
  • --execute <command> shell command line to execute for each incoming response (see section about output formatting for details)

Basic Functions

tinkerforge call lcd-16x2-bricklet <uid> write-line <line> <position> <text>
Parameters:
  • <line> – Type: Int, Range: [0 to 1]
  • <position> – Type: Int, Range: [0 to 15]
  • <text> – Type: String, Length: up to 16
Output:
  • no output

Writes text to a specific line with a specific position. The text can have a maximum of 16 characters.

For example: (0, 5, "Hello") will write Hello in the middle of the first line of the display.

The display uses a special charset that includes all ASCII characters except backslash and tilde. The LCD charset also includes several other non-ASCII characters, see the charset specification for details. The Unicode example above shows how to specify non-ASCII characters and how to translate from Unicode to the LCD charset.

tinkerforge call lcd-16x2-bricklet <uid> clear-display
Output:
  • no output

Deletes all characters from the display.

tinkerforge call lcd-16x2-bricklet <uid> backlight-on
Output:
  • no output

Turns the backlight on.

tinkerforge call lcd-16x2-bricklet <uid> backlight-off
Output:
  • no output

Turns the backlight off.

tinkerforge call lcd-16x2-bricklet <uid> is-backlight-on
Output:
  • backlight – Type: Bool

Returns true if the backlight is on and false otherwise.

Advanced Functions

tinkerforge call lcd-16x2-bricklet <uid> set-config <cursor> <blinking>
Parameters:
  • <cursor> – Type: Bool, Default: false
  • <blinking> – Type: Bool, Default: false
Output:
  • no output

Configures if the cursor (shown as "_") should be visible and if it should be blinking (shown as a blinking block). The cursor position is one character behind the the last text written with write-line.

tinkerforge call lcd-16x2-bricklet <uid> get-config
Output:
  • cursor – Type: Bool, Default: false
  • blinking – Type: Bool, Default: false

Returns the configuration as set by set-config.

tinkerforge call lcd-16x2-bricklet <uid> is-button-pressed <button>
Parameters:
  • <button> – Type: Int, Range: [0 to 2]
Output:
  • pressed – Type: Bool

Returns true if the button is pressed.

If you want to react on button presses and releases it is recommended to use the button-pressed and button-released callbacks.

tinkerforge call lcd-16x2-bricklet <uid> set-custom-character <index> <character>
Parameters:
  • <index> – Type: Int, Range: [0 to 7]
  • <character> – Type: Int Array, Length: 8, Range: [0 to 31]
Output:
  • no output

The LCD 16x2 Bricklet can store up to 8 custom characters. The characters consist of 5x8 pixels and can be addressed with the index 0-7. To describe the pixels, the first 5 bits of 8 bytes are used. For example, to make a custom character "H", you should transfer the following:

  • character[0] = 0b00010001 (decimal value 17)
  • character[1] = 0b00010001 (decimal value 17)
  • character[2] = 0b00010001 (decimal value 17)
  • character[3] = 0b00011111 (decimal value 31)
  • character[4] = 0b00010001 (decimal value 17)
  • character[5] = 0b00010001 (decimal value 17)
  • character[6] = 0b00010001 (decimal value 17)
  • character[7] = 0b00000000 (decimal value 0)

The characters can later be written with write-line by using the characters with the byte representation 8 ("\x08" or "\u0008") to 15 ("\x0F" or "\u000F").

You can play around with the custom characters in Brick Viewer since version 2.0.1.

Custom characters are stored by the LCD in RAM, so they have to be set after each startup.

New in version 2.0.1 (Plugin).

tinkerforge call lcd-16x2-bricklet <uid> get-custom-character <index>
Parameters:
  • <index> – Type: Int, Range: [0 to 7]
Output:
  • character – Type: Int Array, Length: 8, Range: [0 to 31]

Returns the custom character for a given index, as set with set-custom-character.

New in version 2.0.1 (Plugin).

tinkerforge call lcd-16x2-bricklet <uid> get-identity
Output:
  • uid – Type: String, Length: up to 8
  • connected-uid – Type: String, Length: up to 8
  • position – Type: Char, Range: [a to h, z]
  • hardware-version – Type: Int Array, Length: 3
    • 0: major – Type: Int, Range: [0 to 255]
    • 1: minor – Type: Int, Range: [0 to 255]
    • 2: revision – Type: Int, Range: [0 to 255]
  • firmware-version – Type: Int Array, Length: 3
    • 0: major – Type: Int, Range: [0 to 255]
    • 1: minor – Type: Int, Range: [0 to 255]
    • 2: revision – Type: Int, Range: [0 to 255]
  • device-identifier – Type: Int, Range: [0 to 216 - 1]

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

The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.

The device identifier numbers can be found here

Callbacks

Callbacks can be used to receive time critical or recurring data from the device:

tinkerforge dispatch lcd-16x2-bricklet <uid> example

The available callbacks are described below.

Note

Using callbacks for recurring events is always preferred compared to using getters. It will use less USB bandwidth and the latency will be a lot better, since there is no round trip time.

tinkerforge dispatch lcd-16x2-bricklet <uid> button-pressed
Output:
  • button – Type: Int, Range: [0 to 2]

This callback is triggered when a button is pressed. The parameter is the number of the button.

tinkerforge dispatch lcd-16x2-bricklet <uid> button-released
Output:
  • button – Type: Int, Range: [0 to 2]

This callback is triggered when a button is released. The parameter is the number of the button.