Location not included 2020/Flipdotflut: Unterschied zwischen den Versionen
Aus LaborWiki
(+links) |
|||
Zeile 6: | Zeile 6: | ||
== HTTP-Interface == | == HTTP-Interface == | ||
HOST = N.N. | |||
{| class="wikitable" | {| class="wikitable" |
Version vom 18. Oktober 2020, 22:03 Uhr
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.
z.B.: $ curl -d data=110110... HOST/page |