Projects/Flipdot

Uit Hackerspace Bitlair
Project: Flipdot
Beschrijving Grote flipdot display
Start 2019-10-20
Contact Polyfloyd, Eightdot
Status Production

Dit is de grote flipdot display die Eightdot en Polyfloyd hebben gekocht van de Duitse Otters bij Eth0 Herfst 2019.

Aansturen

De flipdot zit op Shelly 10.

Adres: tcp://100.64.0.90:7890

Een nieuwe frame begint met 0x00 0x00 0x15 0x00. Daarna 5376 bytes voor het plaatje.

Voorbeeld: digitale klok met Imagemagick

nb: zet alsjeblieft geen klok op als standaard/idle animatie want dat is echt heel irritant wanneer het script per ongeluk stopt.

convert -size 336x16 xc:black -density 800x240 \
  -font Liberation-Mono -pointsize 6 -fill white -gravity Center -annotate +0+1 `date +%H:%M` \
  -draw "line 0,15,$(((`date +1%S`-100)*56/10)),15" -depth 8 output.gray

(echo -ne "\x00\x00\x15\x00"; dd if=output.gray bs=5376 count=1 2>/dev/null) | nc -q1 -w1 100.64.0.90 7890