~~META:description abstract=Driver for alcatel serial wallboard~~
Driver for alcatel serial wallboard
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
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.
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 :
select [0-7]
: select current display and reset cursor to 0clear
: clear display and reset cursor to 0seek [0-31]?
: set cursor to character index, set cursor to 0 if no index providedprint .+
: print text, ignored if no text provided, jumps line automaticallymode [rogbf]+
: set color and or blink mode (lasts wins), ignored if no mode providedwait [1-256]?
: wait in seconds, wait 1s if no duration providedlabel [1-16]
: creates label, ignored if no label number providedgoto [1-16]
: jump to label, jumps to start of file if no label provided or label does not existsrepeat [1-16] [N]
: repeat code since label, ignored if label not provided, repeats 1 time if no count provided, /!\ labels can't be interleaved, behaviour is otherwise unknown /!\loop
: same as goto
# 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
schematic.svg
// Source code
microcontroller usb