├── .github └── FUNDING.yml ├── .gitignore ├── ArduinoJson-v6.15.1.h ├── AudioCustomLogger.cpp ├── AudioCustomLogger.h ├── AudioFileSourceFatFs.cpp ├── AudioFileSourceFatFs.h ├── AudioGeneratorTonie.cpp ├── AudioGeneratorTonie.h ├── AudioGeneratorWAVStatic.cpp ├── AudioGeneratorWAVStatic.h ├── AudioOutputCC3200I2S.cpp ├── AudioOutputCC3200I2S.h ├── AudioOutputResample.cpp ├── AudioOutputResample.h ├── BaseHeader.h ├── BoxAccelerometer.cpp ├── BoxAccelerometer.h ├── BoxAudioBuffer.cpp ├── BoxAudioBuffer.h ├── BoxAudioBufferTriple.cpp ├── BoxAudioBufferTriple.h ├── BoxBattery.cpp ├── BoxBattery.h ├── BoxButtonEars.cpp ├── BoxButtonEars.h ├── BoxCLI.cpp ├── BoxCLI.h ├── BoxConfig.cpp ├── BoxConfig.h ├── BoxDAC.cpp ├── BoxDAC.h ├── BoxEvents.cpp ├── BoxEvents.h ├── BoxI2C.cpp ├── BoxI2C.h ├── BoxLEDs.cpp ├── BoxLEDs.h ├── BoxPlayer.cpp ├── BoxPlayer.h ├── BoxPower.cpp ├── BoxPower.h ├── BoxRFID.cpp ├── BoxRFID.h ├── BoxSD.cpp ├── BoxSD.h ├── BoxTimer.cpp ├── BoxTimer.h ├── BoxTonies.cpp ├── BoxTonies.h ├── ConfigStatic.h.example ├── ConfigStructures.h ├── Hackiebox.cpp ├── Hackiebox.h ├── LogStreamMulti.cpp ├── LogStreamMulti.h ├── LogStreamSd.cpp ├── LogStreamSd.h ├── LogStreamSse.cpp ├── LogStreamSse.h ├── README.md ├── TonieStructures.h ├── WrapperWebServer.cpp ├── WrapperWebServer.h ├── WrapperWiFi.cpp ├── WrapperWiFi.h ├── audio ├── both-of-us-14037.wav ├── cinematic-fairy-tale-story-main-8697.wav ├── electronic-rock-king-around-here-15045.wav ├── into-the-night-20928.wav ├── melody-of-nature-main-6672.wav ├── nightlife-michael-kobrin-95bpm-3783.wav ├── source │ ├── both-of-us-14037.txt │ ├── cinematic-fairy-tale-story-main-8697.txt │ ├── electronic-rock-king-around-here-15045.txt │ ├── into-the-night-20928.txt │ ├── melody-of-nature-main-6672.txt │ ├── nightlife-michael-kobrin-95bpm-3783.txt │ ├── the-cradle-of-your-soul-15700.txt │ ├── trailer-sport-stylish-16073.txt │ └── yesterday-extended-version-14197.txt ├── the-cradle-of-your-soul-15700.wav ├── trailer-sport-stylish-16073.wav └── yesterday-extended-version-14197.wav ├── hackiebox_cfw.ino └── web ├── hackiebox.html └── local-echo.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ConfigStatic.h 2 | .vscode/* 3 | build/out/* 4 | -------------------------------------------------------------------------------- /ArduinoJson-v6.15.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/ArduinoJson-v6.15.1.h -------------------------------------------------------------------------------- /AudioCustomLogger.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "AudioCustomLogger.h" 3 | -------------------------------------------------------------------------------- /AudioCustomLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioCustomLogger.h -------------------------------------------------------------------------------- /AudioFileSourceFatFs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioFileSourceFatFs.cpp -------------------------------------------------------------------------------- /AudioFileSourceFatFs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioFileSourceFatFs.h -------------------------------------------------------------------------------- /AudioGeneratorTonie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioGeneratorTonie.cpp -------------------------------------------------------------------------------- /AudioGeneratorTonie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioGeneratorTonie.h -------------------------------------------------------------------------------- /AudioGeneratorWAVStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioGeneratorWAVStatic.cpp -------------------------------------------------------------------------------- /AudioGeneratorWAVStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioGeneratorWAVStatic.h -------------------------------------------------------------------------------- /AudioOutputCC3200I2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioOutputCC3200I2S.cpp -------------------------------------------------------------------------------- /AudioOutputCC3200I2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioOutputCC3200I2S.h -------------------------------------------------------------------------------- /AudioOutputResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioOutputResample.cpp -------------------------------------------------------------------------------- /AudioOutputResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/AudioOutputResample.h -------------------------------------------------------------------------------- /BaseHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BaseHeader.h -------------------------------------------------------------------------------- /BoxAccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAccelerometer.cpp -------------------------------------------------------------------------------- /BoxAccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAccelerometer.h -------------------------------------------------------------------------------- /BoxAudioBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAudioBuffer.cpp -------------------------------------------------------------------------------- /BoxAudioBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAudioBuffer.h -------------------------------------------------------------------------------- /BoxAudioBufferTriple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAudioBufferTriple.cpp -------------------------------------------------------------------------------- /BoxAudioBufferTriple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxAudioBufferTriple.h -------------------------------------------------------------------------------- /BoxBattery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxBattery.cpp -------------------------------------------------------------------------------- /BoxBattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxBattery.h -------------------------------------------------------------------------------- /BoxButtonEars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxButtonEars.cpp -------------------------------------------------------------------------------- /BoxButtonEars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxButtonEars.h -------------------------------------------------------------------------------- /BoxCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxCLI.cpp -------------------------------------------------------------------------------- /BoxCLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxCLI.h -------------------------------------------------------------------------------- /BoxConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxConfig.cpp -------------------------------------------------------------------------------- /BoxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxConfig.h -------------------------------------------------------------------------------- /BoxDAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxDAC.cpp -------------------------------------------------------------------------------- /BoxDAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxDAC.h -------------------------------------------------------------------------------- /BoxEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxEvents.cpp -------------------------------------------------------------------------------- /BoxEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxEvents.h -------------------------------------------------------------------------------- /BoxI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxI2C.cpp -------------------------------------------------------------------------------- /BoxI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxI2C.h -------------------------------------------------------------------------------- /BoxLEDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxLEDs.cpp -------------------------------------------------------------------------------- /BoxLEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxLEDs.h -------------------------------------------------------------------------------- /BoxPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxPlayer.cpp -------------------------------------------------------------------------------- /BoxPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxPlayer.h -------------------------------------------------------------------------------- /BoxPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxPower.cpp -------------------------------------------------------------------------------- /BoxPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxPower.h -------------------------------------------------------------------------------- /BoxRFID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxRFID.cpp -------------------------------------------------------------------------------- /BoxRFID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxRFID.h -------------------------------------------------------------------------------- /BoxSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxSD.cpp -------------------------------------------------------------------------------- /BoxSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxSD.h -------------------------------------------------------------------------------- /BoxTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxTimer.cpp -------------------------------------------------------------------------------- /BoxTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxTimer.h -------------------------------------------------------------------------------- /BoxTonies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxTonies.cpp -------------------------------------------------------------------------------- /BoxTonies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/BoxTonies.h -------------------------------------------------------------------------------- /ConfigStatic.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/ConfigStatic.h.example -------------------------------------------------------------------------------- /ConfigStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/ConfigStructures.h -------------------------------------------------------------------------------- /Hackiebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/Hackiebox.cpp -------------------------------------------------------------------------------- /Hackiebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/Hackiebox.h -------------------------------------------------------------------------------- /LogStreamMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamMulti.cpp -------------------------------------------------------------------------------- /LogStreamMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamMulti.h -------------------------------------------------------------------------------- /LogStreamSd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamSd.cpp -------------------------------------------------------------------------------- /LogStreamSd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamSd.h -------------------------------------------------------------------------------- /LogStreamSse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamSse.cpp -------------------------------------------------------------------------------- /LogStreamSse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/LogStreamSse.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/README.md -------------------------------------------------------------------------------- /TonieStructures.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WrapperWebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/WrapperWebServer.cpp -------------------------------------------------------------------------------- /WrapperWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/WrapperWebServer.h -------------------------------------------------------------------------------- /WrapperWiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/WrapperWiFi.cpp -------------------------------------------------------------------------------- /WrapperWiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/WrapperWiFi.h -------------------------------------------------------------------------------- /audio/both-of-us-14037.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/both-of-us-14037.wav -------------------------------------------------------------------------------- /audio/cinematic-fairy-tale-story-main-8697.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/cinematic-fairy-tale-story-main-8697.wav -------------------------------------------------------------------------------- /audio/electronic-rock-king-around-here-15045.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/electronic-rock-king-around-here-15045.wav -------------------------------------------------------------------------------- /audio/into-the-night-20928.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/into-the-night-20928.wav -------------------------------------------------------------------------------- /audio/melody-of-nature-main-6672.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/melody-of-nature-main-6672.wav -------------------------------------------------------------------------------- /audio/nightlife-michael-kobrin-95bpm-3783.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/nightlife-michael-kobrin-95bpm-3783.wav -------------------------------------------------------------------------------- /audio/source/both-of-us-14037.txt: -------------------------------------------------------------------------------- 1 | https://pixabay.com/de/music/schlagt-both-of-us-14037/ 2 | -------------------------------------------------------------------------------- /audio/source/cinematic-fairy-tale-story-main-8697.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/cinematic-fairy-tale-story-main-8697.txt -------------------------------------------------------------------------------- /audio/source/electronic-rock-king-around-here-15045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/electronic-rock-king-around-here-15045.txt -------------------------------------------------------------------------------- /audio/source/into-the-night-20928.txt: -------------------------------------------------------------------------------- 1 | https://pixabay.com/de/music/schlagt-into-the-night-20928/ 2 | -------------------------------------------------------------------------------- /audio/source/melody-of-nature-main-6672.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/melody-of-nature-main-6672.txt -------------------------------------------------------------------------------- /audio/source/nightlife-michael-kobrin-95bpm-3783.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/nightlife-michael-kobrin-95bpm-3783.txt -------------------------------------------------------------------------------- /audio/source/the-cradle-of-your-soul-15700.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/the-cradle-of-your-soul-15700.txt -------------------------------------------------------------------------------- /audio/source/trailer-sport-stylish-16073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/trailer-sport-stylish-16073.txt -------------------------------------------------------------------------------- /audio/source/yesterday-extended-version-14197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/source/yesterday-extended-version-14197.txt -------------------------------------------------------------------------------- /audio/the-cradle-of-your-soul-15700.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/the-cradle-of-your-soul-15700.wav -------------------------------------------------------------------------------- /audio/trailer-sport-stylish-16073.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/trailer-sport-stylish-16073.wav -------------------------------------------------------------------------------- /audio/yesterday-extended-version-14197.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/audio/yesterday-extended-version-14197.wav -------------------------------------------------------------------------------- /hackiebox_cfw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/hackiebox_cfw.ino -------------------------------------------------------------------------------- /web/hackiebox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/web/hackiebox.html -------------------------------------------------------------------------------- /web/local-echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toniebox-reverse-engineering/hackiebox_cfw/HEAD/web/local-echo.js --------------------------------------------------------------------------------