Location not included 2020/Flipdotflut: Unterschied zwischen den Versionen
Aus LaborWiki
(kat.) |
|||
Zeile 42: | Zeile 42: | ||
* [https://peertube.fidonet.io/videos/watch/ceab7e48-36ba-4466-b401-d9bac0828cd8 Mirror bei Peertube] [https://peertube.fidonet.io/static/streaming-playlists/hls/ceab7e48-36ba-4466-b401-d9bac0828cd8/ceab7e48-36ba-4466-b401-d9bac0828cd8-480-fragmented.mp4] | * [https://peertube.fidonet.io/videos/watch/ceab7e48-36ba-4466-b401-d9bac0828cd8 Mirror bei Peertube] [https://peertube.fidonet.io/static/streaming-playlists/hls/ceab7e48-36ba-4466-b401-d9bac0828cd8/ceab7e48-36ba-4466-b401-d9bac0828cd8-480-fragmented.mp4] | ||
== | == Links == | ||
* [[Projekt/FlipFlapFlop]] | |||
* [https://nbviewer.jupyter.org/github/tbs1-bo/flipflapflop/blob/master/ressources/lni20/flipdotflut.ipynb Demo] | * [https://nbviewer.jupyter.org/github/tbs1-bo/flipflapflop/blob/master/ressources/lni20/flipdotflut.ipynb Demo] | ||
* [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 31. Dezember 2020, 13:19 Uhr
Während der Location not included 2020 kann ein Flipdot-Display aus der Ferne gesteuert werden.
Zum Display: http://flipflapflop.online
Systemübersicht
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
Links
- Projekt/FlipFlapFlop
- Demo
- web.py: Implementierung des Web-Interfaces.