Location not included 2020/Flipdotflut: Unterschied zwischen den Versionen
Aus LaborWiki
K (→HTTP-Interface) |
K (→Weblinks) |
||
Zeile 31: | Zeile 31: | ||
== Weblinks == | == Weblinks == | ||
* [https://github.com/tbs1-bo/flipflapflop/blob/master/ressources/lni20/flipdotflut.ipynb Demo] | |||
* [https://tbs1-bo.github.io/flipflapflop/ Dokumentation] | * [https://tbs1-bo.github.io/flipflapflop/ Dokumentation] | ||
* [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. |
Version vom 19. Oktober 2020, 07:06 Uhr
For Labor-Certified FlipFlapFlop Professionals only!
Remotesteuerung eines Flipdotdisplays während der Location not included 2020.
Systemübersicht
HTTP-Interface
HOST = N.N.
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
- Demo
- Dokumentation
- web.py: Implementierung des Web-Interfaces.