├── .github └── workflows │ └── platformio-build.yml ├── .gitignore ├── LICENSE ├── README.md ├── include └── README ├── lib └── README ├── platformio.ini ├── screenshots └── main.jpeg ├── src ├── Free_Fonts.h ├── configs.h └── main.cpp └── test └── README /.github/workflows/platformio-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/.github/workflows/platformio-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/README.md -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/platformio.ini -------------------------------------------------------------------------------- /screenshots/main.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/screenshots/main.jpeg -------------------------------------------------------------------------------- /src/Free_Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/src/Free_Fonts.h -------------------------------------------------------------------------------- /src/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/src/configs.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerio-vaccaro/HAN/HEAD/test/README --------------------------------------------------------------------------------