This is the description of the JavaScript API bindings for the OLED 128x64 Bricklet. General information and technical specifications for the OLED 128x64 Bricklet are summarized in its hardware description.
An installation guide for the JavaScript API bindings is part of their general description.
The example code below is Public Domain (CC0 1.0).
Download (ExampleHelloWorld.js)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | var Tinkerforge = require('tinkerforge');
var HOST = 'localhost';
var PORT = 4223;
var UID = 'XYZ'; // Change XYZ to the UID of your OLED 128x64 Bricklet
var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var oled = new Tinkerforge.BrickletOLED128x64(UID, ipcon); // Create device object
ipcon.connect(HOST, PORT,
function (error) {
console.log('Error: ' + error);
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Clear display
oled.clearDisplay();
// Write "Hello World" starting from upper left corner of the screen
oled.writeLine(0, 0, 'Hello World');
}
);
console.log('Press key to exit');
process.stdin.on('data',
function (data) {
ipcon.disconnect();
process.exit(0);
}
);
|
Download (ExamplePixelMatrix.js)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | var Tinkerforge = require('tinkerforge');
var HOST = 'localhost';
var PORT = 4223;
var UID = 'XYZ'; // Change XYZ to the UID of your OLED 128x64 Bricklet
var SCREEN_WIDTH = 128;
var SCREEN_HEIGHT = 64;
var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var oled = new Tinkerforge.BrickletOLED128x64(UID, ipcon); // Create device object
function drawMatrix(oled, pixels) {
column = [];
column_write = [];
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
column[i] = [];
}
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
for (var j = 0; j < SCREEN_WIDTH; j++) {
page = 0;
for (var k = 0; k < 8; k++) {
if (pixels[i*8 + k][j]) {
page |= 1 << k;
}
}
column[i][j] = page;
}
}
oled.newWindow(0, SCREEN_WIDTH-1, 0, 7)
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
l = 0;
for (j = 0; j < SCREEN_WIDTH/2; j++) {
column_write[l] = column[i][j];
l++;
}
oled.write(column_write);
l = 0;
for (k = SCREEN_WIDTH/2; k < SCREEN_WIDTH; k++) {
column_write[l] = column[i][k];
l++;
}
oled.write(column_write);
}
}
ipcon.connect(HOST, PORT,
function (error) {
console.log('Error: ' + error);
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Clear display
oled.clearDisplay();
// Draw checkerboard pattern
var pixelMatrix = [];
for (var h = 0; h < SCREEN_HEIGHT; h++) {
pixelMatrix[h] = [];
for (var w = 0; w < SCREEN_WIDTH; w++) {
pixelMatrix[h][w] = Math.floor(h / 8) % 2 == Math.floor(w / 8) % 2;
}
}
drawMatrix(oled, pixelMatrix);
}
);
console.log('Press key to exit');
process.stdin.on('data',
function (data) {
ipcon.disconnect();
process.exit(0);
}
);
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | var Tinkerforge = require('tinkerforge');
var GM = require('gm'); // FIXME: maybe use node-gd instead
var getPixels = require('get-pixels');
var HOST = 'localhost';
var PORT = 4223;
var UID = 'XYZ'; // Change XYZ to the UID of your OLED 128x64 Bricklet
var WIDTH = 128;
var HEIGHT = 64;
var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var oled = new Tinkerforge.BrickletOLED128x64(UID, ipcon); // Create device object
var originX = WIDTH / 2;
var originY = HEIGHT / 2;
var length = HEIGHT / 2 - 2;
var angle = 0;
function drawImage(oled, image) {
// FIXME: GraphicsMagick doesn't seem to have a way to access the individual
// pixels. Convert to PNG and then used get-pixels to read the pixels back.
// This is far from ideal, but better than nothing.
image.toBuffer('PNG', function (err, buffer) {
if (err) {
console.log('toBuffer: ' + err);
return;
}
getPixels(buffer, 'image/png', function(err, pixels) {
if (err) {
console.log('getPixels: ' + err);
return;
}
column = [];
column_write = [];
for (var i = 0; i < HEIGHT/8; i++) {
column[i] = [];
}
for (var i = 0; i < HEIGHT/8; i++) {
for (var j = 0; j < WIDTH; j++) {
page = 0;
for (var k = 0; k < 8; k++) {
if (pixels.get(j, i*8 + k, 0) > 0) {
page |= 1 << k;
}
}
column[i][j] = page;
}
}
oled.newWindow(0, WIDTH-1, 0, 7)
for (var i = 0; i < HEIGHT/8; i++) {
l = 0;
for (j = 0; j < WIDTH/2; j++) {
column_write[l] = column[i][j];
l++;
}
oled.write(column_write);
l = 0;
for (k = WIDTH/2; k < WIDTH; k++) {
column_write[l] = column[i][k];
l++;
}
oled.write(column_write);
}
});
});
}
ipcon.connect(HOST, PORT,
function (error) {
console.log('Error: ' + error);
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Clear display
oled.clearDisplay();
// Draw rotating line
function render() {
// FIXME: Creating the image once and reusing it would be better, but
// on the second call toBuffer() fails with "Stream yields empty buffer"
var image = GM(WIDTH, HEIGHT, '#000');
var radians = angle * Math.PI / 180;
var x = Math.floor(originX + length * Math.cos(radians));
var y = Math.floor(originY + length * Math.sin(radians));
image.fill('#FFF').drawLine(originX, originY, x, y);
drawImage(oled, image);
angle++;
}
setInterval(render, 25);
}
);
console.log('Press key to exit');
process.stdin.on('data',
function (data) {
ipcon.disconnect();
process.exit(0);
}
);
|
Download (ExampleHelloWorld.html), Test (ExampleHelloWorld.html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | <!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>Tinkerforge | JavaScript Example</title>
</head>
<body>
<div style="text-align:center;">
<h1>OLED 128x64 Bricklet Hello World Example</h1>
<p>
<input value="localhost" id="host" type="text" size="20">:
<input value="4280" id="port" type="text" size="5">,
<input value="uid" id="uid" type="text" size="5">
<input value="Start Example" id="start" type="button" onclick="startExample();">
</p>
<p>
<textarea readonly id="text" cols="80" rows="24" style="resize:none;"
>Press "Start Example" to begin ...</textarea>
</p>
</div>
<script src="./Tinkerforge.js" type='text/javascript'></script>
<script type='text/javascript'>
var ipcon;
var textArea = document.getElementById("text");
function startExample() {
textArea.value = "";
var HOST = document.getElementById("host").value;
var PORT = parseInt(document.getElementById("port").value);
var UID = document.getElementById("uid").value;
if(ipcon !== undefined) {
ipcon.disconnect();
}
ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var oled = new Tinkerforge.BrickletOLED128x64(UID, ipcon); // Create device object
ipcon.connect(HOST, PORT,
function(error) {
textArea.value += 'Error: ' + error + '\n';
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Clear display
oled.clearDisplay();
// Write "Hello World" starting from upper left corner of the screen
oled.writeLine(0, 0, 'Hello World');
}
);
}
</script>
</body>
</html>
|
Download (ExamplePixelMatrix.html), Test (ExamplePixelMatrix.html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | <!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>Tinkerforge | JavaScript Example</title>
</head>
<body>
<div style="text-align:center;">
<h1>OLED 128x64 Bricklet Pixel Matrix Example</h1>
<p>
<input value="localhost" id="host" type="text" size="20">:
<input value="4280" id="port" type="text" size="5">,
<input value="uid" id="uid" type="text" size="5">
<input value="Start Example" id="start" type="button" onclick="startExample();">
</p>
<p>
<textarea readonly id="text" cols="80" rows="24" style="resize:none;"
>Press "Start Example" to begin ...</textarea>
</p>
</div>
<script src="./Tinkerforge.js" type='text/javascript'></script>
<script type='text/javascript'>
var ipcon;
var textArea = document.getElementById("text");
var SCREEN_WIDTH = 128;
var SCREEN_HEIGHT = 64;
function drawMatrix(oled, pixels) {
column = [];
column_write = [];
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
column[i] = [];
}
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
for (var j = 0; j < SCREEN_WIDTH; j++) {
page = 0;
for (var k = 0; k < 8; k++) {
if (pixels[i*8 + k][j] == true) {
page |= 1 << k;
}
}
column[i][j] = page;
}
}
oled.newWindow(0, SCREEN_WIDTH-1, 0, 7)
for (var i = 0; i < SCREEN_HEIGHT/8; i++) {
l = 0;
for (j = 0; j < SCREEN_WIDTH/2; j++) {
column_write[l] = column[i][j];
l++;
}
oled.write(column_write);
l = 0;
for (k = SCREEN_WIDTH/2; k < SCREEN_WIDTH; k++) {
column_write[l] = column[i][k];
l++;
}
oled.write(column_write);
}
}
function startExample() {
textArea.value = "";
var HOST = document.getElementById("host").value;
var PORT = parseInt(document.getElementById("port").value);
var UID = document.getElementById("uid").value;
if(ipcon !== undefined) {
ipcon.disconnect();
}
ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var oled = new Tinkerforge.BrickletOLED128x64(UID, ipcon); // Create device object
ipcon.connect(HOST, PORT,
function(error) {
textArea.value += 'Error: ' + error + '\n';
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Clear display
oled.clearDisplay();
// Draw checkerboard pattern
var pixelMatrix = [];
for (var h = 0; h < SCREEN_HEIGHT; h++) {
pixelMatrix[h] = [];
for (var w = 0; w < SCREEN_WIDTH; w++) {
pixelMatrix[h][w] = Math.floor(h / 8) % 2 == Math.floor(w / 8) % 2;
}
}
drawMatrix(oled, pixelMatrix);
}
);
}
</script>
</body>
</html>
|
Generally, every function of the JavaScript bindings can take two optional
parameters, returnCallback
and errorCallback
. These are two user
defined callback functions. The returnCallback
function is called with the
results as arguments, if the function returns its results asynchronously. The
errorCallback
is called with an error code in case of an error. The error
code can be one of the following values:
The namespace for the JavaScript bindings is Tinkerforge.*
.
BrickletOLED128x64
(uid, ipcon)¶Parameters: |
|
---|---|
Returns: |
|
Creates an object with the unique device ID uid
:
var oled128x64 = new BrickletOLED128x64("YOUR_DEVICE_UID", ipcon);
This object can then be used after the IP Connection is connected.
BrickletOLED128x64.
write
(data[, returnCallback][, errorCallback])¶Parameters: |
|
---|---|
Callback Parameters: |
|
Returns: |
|
Appends 64 byte of data to the window as set by newWindow()
.
Each row has a height of 8 pixels which corresponds to one byte of data.
Example: if you call newWindow()
with column from 0 to 127 and row
from 0 to 7 (the whole display) each call of write()
(red arrow) will
write half of a row.
The LSB (D0) of each data byte is at the top and the MSB (D7) is at the bottom of the row.
The next call of write()
will write the second half of the row
and the next two the second row and so on. To fill the whole display
you need to call write()
16 times.
BrickletOLED128x64.
newWindow
(columnFrom, columnTo, rowFrom, rowTo[, returnCallback][, errorCallback])¶Parameters: |
|
---|---|
Callback Parameters: |
|
Returns: |
|
Sets the window in which you can write with write()
. One row
has a height of 8 pixels.
BrickletOLED128x64.
clearDisplay
([returnCallback][, errorCallback])¶Callback Parameters: |
|
---|---|
Returns: |
|
Clears the current content of the window as set by newWindow()
.
BrickletOLED128x64.
writeLine
(line, position, text[, returnCallback][, errorCallback])¶Parameters: |
|
---|---|
Callback Parameters: |
|
Returns: |
|
Writes text to a specific line with a specific position. The text can have a maximum of 26 characters.
For example: (1, 10, "Hello") will write Hello in the middle of the second line of the display.
You can draw to the display with write()
and then add text to it
afterwards.
The display uses a special 5x7 pixel charset. You can view the characters of the charset in Brick Viewer.
The font conforms to code page 437.
BrickletOLED128x64.
setDisplayConfiguration
(contrast, invert[, returnCallback][, errorCallback])¶Parameters: |
|
---|---|
Callback Parameters: |
|
Returns: |
|
Sets the configuration of the display.
You can set a contrast value from 0 to 255 and you can invert the color (black/white) of the display.
BrickletOLED128x64.
getDisplayConfiguration
([returnCallback][, errorCallback])¶Callback Parameters: |
|
---|---|
Returns: |
|
Returns the configuration as set by setDisplayConfiguration()
.
BrickletOLED128x64.
getIdentity
([returnCallback][, errorCallback])¶Callback Parameters: |
|
---|---|
Returns: |
|
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. There is also a constant for the device identifier of this Bricklet.
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.
BrickletOLED128x64.
getAPIVersion
()¶Returns: |
|
---|
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.
BrickletOLED128x64.
getResponseExpected
(functionId[, errorCallback])¶Parameters: |
|
---|---|
Returns: |
|
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 function_id:
BrickletOLED128x64.
setResponseExpected
(functionId, responseExpected[, errorCallback])¶Parameters: |
|
---|---|
Returns: |
|
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 function_id:
BrickletOLED128x64.
setResponseExpectedAll
(responseExpected)¶Parameters: |
|
---|---|
Returns: |
|
Changes the response expected flag for all setter and callback configuration functions of this device at once.
BrickletOLED128x64.
DEVICE_IDENTIFIER
¶This constant is used to identify a OLED 128x64 Bricklet.
The getIdentity()
function and the
IPConnection.CALLBACK_ENUMERATE
callback of the IP Connection have a device_identifier
parameter to specify
the Brick's or Bricklet's type.
BrickletOLED128x64.
DEVICE_DISPLAY_NAME
¶This constant represents the human readable name of a OLED 128x64 Bricklet.