├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── extensions.json ├── LICENSE ├── data └── dashboard.htm ├── docs ├── 20161207204119_91789.png ├── AC101 User Manual v1.1. (1).pdf ├── ESP32-A1S Product Specification.pdf ├── OKW-datasheet-B9004806 (1).pdf ├── PS-85□_20201104153630.pdf ├── SGTL5000.pdf ├── TinyPICO.sch.stl ├── WM8960_v4.4.pdf ├── esp32-a1s_%E4%BA%A7%E5%93%81%E8%A7%84%E6%A0%BC%E4%B9%A6_v1.3.pdf ├── esp32-audio-kit_v2.1-open_custom.pdf ├── esp32-audio-kit_v2.2_sch.pdf ├── nowTalk-logo.pdn ├── nowTalk-logo2.jpg ├── nowTalk-logo2.webp ├── ps_catalog_20210427112851.pdf └── vs1053.pdf ├── i2s_drivers ├── SGTL5000 │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── build │ │ ├── audiosom32_test.bin │ │ ├── bootloader │ │ │ └── bootloader.bin │ │ └── partitions_singleapp.bin │ ├── components │ │ └── audiobit │ │ │ ├── CMakeLists.txt │ │ │ ├── audiobit.c │ │ │ ├── component.mk │ │ │ └── include │ │ │ ├── audiobit.h │ │ │ ├── sgtl5000.h │ │ │ └── sounds.h │ ├── documentation │ │ └── connections.png │ ├── main │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ └── main.c │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old ├── vs1053 │ ├── vs1053.c │ └── vs1053.h └── wm8960 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── include │ └── wm8960.h │ ├── sdkconfig │ ├── test │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── build │ │ └── CMakeFiles │ │ │ ├── 3.13.4 │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ └── CMakeCCompilerId.c │ │ │ └── CompilerIdCXX │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ ├── CMakeError.log │ │ │ ├── CMakeOutput.log │ │ │ └── cmake.check_cache │ └── component.mk │ └── wm8960.c ├── images ├── battery_01.c ├── battery_02.c ├── battery_03.c ├── battery_04.c └── battery_05.c ├── include └── README ├── nodejs └── switchboard │ ├── client.mjs │ ├── dasboard.mjs │ ├── index.mjs │ ├── main.mjs │ ├── nowTalk.ini │ ├── nowTalk.sqlite │ ├── package-lock.json │ ├── package.json │ ├── serial.mjs │ ├── utils │ ├── espserial.js │ └── users.js │ └── webpages │ ├── client.js │ └── index.html ├── platformio.ini ├── post_script.py ├── pre_script.py ├── python └── switchboard │ ├── __main__.py │ ├── app.py │ ├── nowTalk.ini │ ├── serial_port.py │ └── tests.py ├── readme.md ├── sketches ├── ESP32AudioKit │ └── ESP32AudioKit.ino ├── TalkingClockI2S │ └── TalkingClockI2S.ino ├── esp32_nowSpeed │ ├── display.h │ └── esp32_nowSpeed.ino ├── nowtalk_bridge │ └── nowtalk_bridge.ino └── sqlite3_spiffs │ └── sqlite3_spiffs.ino ├── src ├── bridge │ ├── .version │ ├── Version.h │ └── main.cpp ├── commbadge │ ├── .version │ ├── TimeEvents.cpp │ ├── TimeEvents.h │ ├── Version.h │ ├── audio.h │ ├── main.cpp │ ├── myAES.h │ ├── nowtalk.h │ ├── switchboard.h │ └── variables.h └── dataChain │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── component.mk │ ├── dataBuffer.cpp │ ├── dataBuffer.h │ ├── dataChain.cpp │ ├── dataChain.h │ ├── examples │ └── serialPort │ │ └── main.cpp │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── src │ ├── SerialInOut.cpp │ ├── SerialInOut.h │ └── espnowInOut.h └── test └── README /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/LICENSE -------------------------------------------------------------------------------- /data/dashboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/data/dashboard.htm -------------------------------------------------------------------------------- /docs/20161207204119_91789.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/20161207204119_91789.png -------------------------------------------------------------------------------- /docs/AC101 User Manual v1.1. (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/AC101 User Manual v1.1. (1).pdf -------------------------------------------------------------------------------- /docs/ESP32-A1S Product Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/ESP32-A1S Product Specification.pdf -------------------------------------------------------------------------------- /docs/OKW-datasheet-B9004806 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/OKW-datasheet-B9004806 (1).pdf -------------------------------------------------------------------------------- /docs/PS-85□_20201104153630.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/PS-85□_20201104153630.pdf -------------------------------------------------------------------------------- /docs/SGTL5000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/SGTL5000.pdf -------------------------------------------------------------------------------- /docs/TinyPICO.sch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/TinyPICO.sch.stl -------------------------------------------------------------------------------- /docs/WM8960_v4.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/WM8960_v4.4.pdf -------------------------------------------------------------------------------- /docs/esp32-a1s_%E4%BA%A7%E5%93%81%E8%A7%84%E6%A0%BC%E4%B9%A6_v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/esp32-a1s_%E4%BA%A7%E5%93%81%E8%A7%84%E6%A0%BC%E4%B9%A6_v1.3.pdf -------------------------------------------------------------------------------- /docs/esp32-audio-kit_v2.1-open_custom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/esp32-audio-kit_v2.1-open_custom.pdf -------------------------------------------------------------------------------- /docs/esp32-audio-kit_v2.2_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/esp32-audio-kit_v2.2_sch.pdf -------------------------------------------------------------------------------- /docs/nowTalk-logo.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/nowTalk-logo.pdn -------------------------------------------------------------------------------- /docs/nowTalk-logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/nowTalk-logo2.jpg -------------------------------------------------------------------------------- /docs/nowTalk-logo2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/nowTalk-logo2.webp -------------------------------------------------------------------------------- /docs/ps_catalog_20210427112851.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/ps_catalog_20210427112851.pdf -------------------------------------------------------------------------------- /docs/vs1053.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/docs/vs1053.pdf -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/CMakeLists.txt -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/Makefile -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/README.md -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/build/audiosom32_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/build/audiosom32_test.bin -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/build/partitions_singleapp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/build/partitions_singleapp.bin -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/CMakeLists.txt -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/audiobit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/audiobit.c -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/component.mk -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/include/audiobit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/include/audiobit.h -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/include/sgtl5000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/include/sgtl5000.h -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/components/audiobit/include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/components/audiobit/include/sounds.h -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/documentation/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/documentation/connections.png -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/main/CMakeLists.txt -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/main/component.mk -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/main/main.c -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/partitions.csv -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/sdkconfig -------------------------------------------------------------------------------- /i2s_drivers/SGTL5000/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/SGTL5000/sdkconfig.old -------------------------------------------------------------------------------- /i2s_drivers/vs1053/vs1053.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/vs1053/vs1053.c -------------------------------------------------------------------------------- /i2s_drivers/vs1053/vs1053.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/vs1053/vs1053.h -------------------------------------------------------------------------------- /i2s_drivers/wm8960/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/CMakeLists.txt -------------------------------------------------------------------------------- /i2s_drivers/wm8960/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/LICENSE -------------------------------------------------------------------------------- /i2s_drivers/wm8960/README.md: -------------------------------------------------------------------------------- 1 | # esp-wm8960 2 | -------------------------------------------------------------------------------- /i2s_drivers/wm8960/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Component Makefile 3 | # 4 | 5 | COMPONENT_ADD_INCLUDEDIRS := include -------------------------------------------------------------------------------- /i2s_drivers/wm8960/include/wm8960.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/include/wm8960.h -------------------------------------------------------------------------------- /i2s_drivers/wm8960/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/sdkconfig -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/CMakeLists.txt -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/Kconfig.projbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CMakeSystem.cmake -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/3.13.4/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/CMakeError.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/CMakeError.log -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /i2s_drivers/wm8960/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/test/component.mk -------------------------------------------------------------------------------- /i2s_drivers/wm8960/wm8960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/i2s_drivers/wm8960/wm8960.c -------------------------------------------------------------------------------- /images/battery_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/images/battery_01.c -------------------------------------------------------------------------------- /images/battery_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/images/battery_02.c -------------------------------------------------------------------------------- /images/battery_03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/images/battery_03.c -------------------------------------------------------------------------------- /images/battery_04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/images/battery_04.c -------------------------------------------------------------------------------- /images/battery_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/images/battery_05.c -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/include/README -------------------------------------------------------------------------------- /nodejs/switchboard/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/client.mjs -------------------------------------------------------------------------------- /nodejs/switchboard/dasboard.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/dasboard.mjs -------------------------------------------------------------------------------- /nodejs/switchboard/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/index.mjs -------------------------------------------------------------------------------- /nodejs/switchboard/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/main.mjs -------------------------------------------------------------------------------- /nodejs/switchboard/nowTalk.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/nowTalk.ini -------------------------------------------------------------------------------- /nodejs/switchboard/nowTalk.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/nowTalk.sqlite -------------------------------------------------------------------------------- /nodejs/switchboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/package-lock.json -------------------------------------------------------------------------------- /nodejs/switchboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/package.json -------------------------------------------------------------------------------- /nodejs/switchboard/serial.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/serial.mjs -------------------------------------------------------------------------------- /nodejs/switchboard/utils/espserial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/utils/espserial.js -------------------------------------------------------------------------------- /nodejs/switchboard/utils/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/utils/users.js -------------------------------------------------------------------------------- /nodejs/switchboard/webpages/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/webpages/client.js -------------------------------------------------------------------------------- /nodejs/switchboard/webpages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/nodejs/switchboard/webpages/index.html -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/platformio.ini -------------------------------------------------------------------------------- /post_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/post_script.py -------------------------------------------------------------------------------- /pre_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/pre_script.py -------------------------------------------------------------------------------- /python/switchboard/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/python/switchboard/__main__.py -------------------------------------------------------------------------------- /python/switchboard/app.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/switchboard/nowTalk.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/python/switchboard/nowTalk.ini -------------------------------------------------------------------------------- /python/switchboard/serial_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/python/switchboard/serial_port.py -------------------------------------------------------------------------------- /python/switchboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/python/switchboard/tests.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/readme.md -------------------------------------------------------------------------------- /sketches/ESP32AudioKit/ESP32AudioKit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/ESP32AudioKit/ESP32AudioKit.ino -------------------------------------------------------------------------------- /sketches/TalkingClockI2S/TalkingClockI2S.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/TalkingClockI2S/TalkingClockI2S.ino -------------------------------------------------------------------------------- /sketches/esp32_nowSpeed/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/esp32_nowSpeed/display.h -------------------------------------------------------------------------------- /sketches/esp32_nowSpeed/esp32_nowSpeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/esp32_nowSpeed/esp32_nowSpeed.ino -------------------------------------------------------------------------------- /sketches/nowtalk_bridge/nowtalk_bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/nowtalk_bridge/nowtalk_bridge.ino -------------------------------------------------------------------------------- /sketches/sqlite3_spiffs/sqlite3_spiffs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/sketches/sqlite3_spiffs/sqlite3_spiffs.ino -------------------------------------------------------------------------------- /src/bridge/.version: -------------------------------------------------------------------------------- 1 | 222 -------------------------------------------------------------------------------- /src/bridge/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/bridge/Version.h -------------------------------------------------------------------------------- /src/bridge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/bridge/main.cpp -------------------------------------------------------------------------------- /src/commbadge/.version: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /src/commbadge/TimeEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/TimeEvents.cpp -------------------------------------------------------------------------------- /src/commbadge/TimeEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/TimeEvents.h -------------------------------------------------------------------------------- /src/commbadge/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/Version.h -------------------------------------------------------------------------------- /src/commbadge/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/audio.h -------------------------------------------------------------------------------- /src/commbadge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/main.cpp -------------------------------------------------------------------------------- /src/commbadge/myAES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/myAES.h -------------------------------------------------------------------------------- /src/commbadge/nowtalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/nowtalk.h -------------------------------------------------------------------------------- /src/commbadge/switchboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/switchboard.h -------------------------------------------------------------------------------- /src/commbadge/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/commbadge/variables.h -------------------------------------------------------------------------------- /src/dataChain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/CMakeLists.txt -------------------------------------------------------------------------------- /src/dataChain/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/LICENSE.md -------------------------------------------------------------------------------- /src/dataChain/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := src 2 | -------------------------------------------------------------------------------- /src/dataChain/dataBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/dataBuffer.cpp -------------------------------------------------------------------------------- /src/dataChain/dataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/dataBuffer.h -------------------------------------------------------------------------------- /src/dataChain/dataChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/dataChain.cpp -------------------------------------------------------------------------------- /src/dataChain/dataChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/dataChain.h -------------------------------------------------------------------------------- /src/dataChain/examples/serialPort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/examples/serialPort/main.cpp -------------------------------------------------------------------------------- /src/dataChain/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/keywords.txt -------------------------------------------------------------------------------- /src/dataChain/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/library.json -------------------------------------------------------------------------------- /src/dataChain/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/library.properties -------------------------------------------------------------------------------- /src/dataChain/src/SerialInOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/src/SerialInOut.cpp -------------------------------------------------------------------------------- /src/dataChain/src/SerialInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/src/dataChain/src/SerialInOut.h -------------------------------------------------------------------------------- /src/dataChain/src/espnowInOut.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nielsnl68/nowtalk/HEAD/test/README --------------------------------------------------------------------------------