Location not included 2020/Flipdotflut: Unterschied zwischen den Versionen

Aus LaborWiki
Wechseln zu: Navigation, Suche
Zeile 40: Zeile 40:
* [https://github.com/tbs1-bo/flipflapflop/blob/master/web.py web.py]: Implementierung des Web-Interfaces.
* [https://github.com/tbs1-bo/flipflapflop/blob/master/web.py web.py]: Implementierung des Web-Interfaces.


* [https://kilobyte22.de/files/labortage/2019/videos/08_FlipDot.mov Vortragsvideo zum Flip-Dot-Display] der [[Labortage 2019]]
* [https://tbs1-bo.github.io/flipflapflop/ FlipFlapFlop-Dokumentation]
* [https://tbs1-bo.github.io/flipflapflop/ FlipFlapFlop-Dokumentation]



Version vom 30. Oktober 2020, 12:43 Uhr


For Labor-Certified FlipFlapFlop Professionals only!

Während der Location not included 2020 kann ein Flipdot-Display aus der Ferne gesteuert werden.

Zum Display: http://flipflapflop.online

Systemübersicht

Flipdotdisplay systemuebersicht.png

HTTP-Interface

HOST = http://flipflapflop.online

Route Methode Beschreibung
/px/<x>/<y>/<onoff> GET, POST Setzt (onoff = „on“) oder löscht (onoff = „off“) den Pixel an Position (x | y).

z.B.: $ curl HOST/px/3/2/on

/page GET Liefert eine Liste aus 1en und 0en, die den aktuellen Zustand des Displays beschreibt.

z.B. $ curl HOST/page → 11011010...

/page POST Über den Parameter „data“ kann eine Liste mit 1en und 0en an das Display gesendet werden, die sofort angezeigt wird. Mit dem Wert "x" bleibt der Pixel unverändert.

z.B.: $ curl -d data=110xxx110... HOST/page

Weblinks