Table of Contents

wallboard driver

~~META:description abstract=Driver for alcatel serial wallboard~~

Driver for alcatel serial wallboard

Features

About wallboard displays

Communication based on V.24 (4800,8n1 or 9600,8n1), up to 8 chained devices.

V.24 frame for each line is :

[start][line]([control]?[ascii]){1,16}[end]

id ::= (0x80 | WALLBOARD_INDEX) << 4
start ::= id | 0x08
line ::= 0x00 | 0x01
control ::= [color]?[blink]?
color ::= id | (0x00(red) | 0x03(orange) | 0x07(green))
blink ::= id | (0x0c(blink) | 0x0b(fixed))
ascii ::= character to display
end ::= id | 0x0f

More info (fr)

Modes

Last openned file is stored in 16 bytes area of EEPROM (address 0-15). Instructions are stored in EEPROM from address 16, using an ATMega32 with 1k of EEPROM allows for 1008 characters storage.

File format

Name length up to 16 characters.

Extension .wbp ?

A line consists of instruction and data, separated by a whitespace.

Everything after a # on a line is ignored, lines starting with an unknown instruction are ignored (or report an error on display ?).

Instructions set is :

# Print partially blinking multicolor "Ga Bu Zo Meu !" on line 1, waits 5s, prints green "Plop" at center of line 2, waits 5s, clear display then wait another 5s before starting again
select 0
mode gb
print Ga # whitespace here
mode o
print Bu # whitespace here
mode r
print Zo # whitespace here
mode o
print Meu # whitespace here
mode rf
print !
wait 5
seek 22
mode gf
print Plop
wait 5
clear
wait 5
loop

Electronics

schematic.svg

Source code

main.c
// Source code

How to

Manual

microcontroller usb