Location not included 2020/Flipdotflut: Unterschied zwischen den Versionen

Aus LaborWiki
Wechseln zu: Navigation, Suche
(→‎Weblinks: mirror)
KKeine Bearbeitungszusammenfassung
Zeile 38: Zeile 38:
<youtube>hsjupNgmKmI</youtube>
<youtube>hsjupNgmKmI</youtube>


* [https://youtu.be/hsjupNgmKmI Vortragsvideo zum Flip-Dot-Display] der [[Labortage 2019]]
* [https://0xabc.de/lt19/flipdot.mp4 Mirror ohne YouTube]


== Weblinks ==
== Weblinks ==
Zeile 44: Zeile 46:
* [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://youtu.be/hsjupNgmKmI Vortragsvideo zum Flip-Dot-Display] ([https://0xabc.de/lt19/flipdot.mp4 Mirror ohne YouTube]) der [[Labortage 2019]]
* [https://tbs1-bo.github.io/flipflapflop/ FlipFlapFlop-Dokumentation]
* [https://tbs1-bo.github.io/flipflapflop/ FlipFlapFlop-Dokumentation]



Version vom 7. November 2020, 16:09 Uhr



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

Vortrag der Labortage 2019

Weblinks