An open API service indexing awesome lists of open source software.

https://github.com/mythsunwind/matrixflut

Simple python server for accessing a RGB matrix via Pixelflut protocol
https://github.com/mythsunwind/matrixflut

pixelflut pixelflut-server

Last synced: 8 months ago
JSON representation

Simple python server for accessing a RGB matrix via Pixelflut protocol

Awesome Lists containing this project

README

          

# matrixflut
Simple python server for accessing a RGB matrix via Pixelflut protocol

## Pixelflut protocol

Pixelflut is a very simple (and inefficient) ASCII based network protocol to draw pixels on a screen. It is described [here](https://cccgoe.de/wiki/Pixelflut) and [here](https://github.com/defnull/pixelflut).

## Supported protocol features

matrixflut currently supports only these basic commands:

* `SIZE`: Returns the size of the visible canvas in pixel as `SIZE `
* `PX `: Draw a single pixel at position (x, y) with the specified hex color code
* `BRIGHTNESS `: A brightness value between 0 and 100

## How to start

`python3 server.py`

## Further reading

Based on https://github.com/defnull/pixelflut