├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── push-master.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── MakunaNeoPixelBusLicence.txt ├── README.md ├── extra_script.py ├── include ├── base.h ├── calibration.h ├── framestate.h ├── main.h └── statistics.h ├── lib └── README ├── platformio.ini ├── src └── main.cpp └── test └── test_SingleSegment └── main.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: awawa-dev 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/.github/workflows/push-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/LICENSE -------------------------------------------------------------------------------- /MakunaNeoPixelBusLicence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/MakunaNeoPixelBusLicence.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/README.md -------------------------------------------------------------------------------- /extra_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/extra_script.py -------------------------------------------------------------------------------- /include/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/include/base.h -------------------------------------------------------------------------------- /include/calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/include/calibration.h -------------------------------------------------------------------------------- /include/framestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/include/framestate.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/include/main.h -------------------------------------------------------------------------------- /include/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/include/statistics.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/test_SingleSegment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awawa-dev/HyperSerialEsp8266/HEAD/test/test_SingleSegment/main.cpp --------------------------------------------------------------------------------