├── .gitignore ├── .travis.yml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── demos ├── clock.py ├── fill.py ├── fonts │ ├── EuropeanTeletextNuevo.ttf │ ├── LICENSE │ └── PixelOperator8.ttf ├── gameoflife.py ├── image.py ├── lib │ ├── __init__.py │ └── imageToBinary.py ├── video.py └── webcam.py ├── include ├── Hanover_Flipdot.h ├── README └── main.h ├── lib └── README ├── platformio.ini ├── src ├── Hanover_FlipDot.cpp └── main.cpp └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/README.md -------------------------------------------------------------------------------- /demos/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/clock.py -------------------------------------------------------------------------------- /demos/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/fill.py -------------------------------------------------------------------------------- /demos/fonts/EuropeanTeletextNuevo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/fonts/EuropeanTeletextNuevo.ttf -------------------------------------------------------------------------------- /demos/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/fonts/LICENSE -------------------------------------------------------------------------------- /demos/fonts/PixelOperator8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/fonts/PixelOperator8.ttf -------------------------------------------------------------------------------- /demos/gameoflife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/gameoflife.py -------------------------------------------------------------------------------- /demos/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/image.py -------------------------------------------------------------------------------- /demos/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/lib/imageToBinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/lib/imageToBinary.py -------------------------------------------------------------------------------- /demos/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/video.py -------------------------------------------------------------------------------- /demos/webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/demos/webcam.py -------------------------------------------------------------------------------- /include/Hanover_Flipdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/include/Hanover_Flipdot.h -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/include/README -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- 1 | #define UDP_PORT 8080 -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/Hanover_FlipDot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/src/Hanover_FlipDot.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndoo/esp32-hanover-flipdot-firmware/HEAD/test/README --------------------------------------------------------------------------------