├── M5Stack assistant ├── M5Stack assistant-arduino │ ├── .gitignore │ ├── .travis.yml │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── launch.json │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ ├── lockscreen_script.py │ │ └── main.cpp │ └── test │ │ └── README ├── readme.md └── uiflow-simple-versions │ ├── advanced_free-busy-office-pomodoro.m5f │ └── free-busy-office-pomodoro.m5f ├── README.md ├── hebocon-watch └── hebocon-watch.m5f ├── m5-atom ├── clicker-counter │ ├── .gitignore │ ├── .travis.yml │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── launch.json │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── m5-flow-version │ │ └── clicker_counter.m5f │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README └── stress-tracking │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.cpp │ └── test │ └── README ├── m5-daikin-controller ├── .gitignore ├── .travis.yml ├── .vscode │ ├── c_cpp_properties.json │ ├── extensions.json │ └── launch.json ├── include │ └── README ├── lib │ ├── DTH12 │ │ ├── Adafruit_Sensor.h │ │ ├── DHT12.cpp │ │ └── DHT12.h │ └── README ├── platformio.ini ├── src │ └── main.cpp └── test │ └── README ├── m5-samsung-controller ├── .gitignore ├── .travis.yml ├── include │ └── README ├── lib │ └── README ├── platformio.ini ├── src │ └── main.cpp └── test │ └── README └── test.txt /M5Stack assistant/M5Stack assistant-arduino/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .clang_complete 3 | .gcc-flags.json 4 | -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/.travis.yml -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/.vscode/extensions.json -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/.vscode/launch.json -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/include/README -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/lib/README -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/platformio.ini -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/src/lockscreen_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/src/lockscreen_script.py -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/src/main.cpp -------------------------------------------------------------------------------- /M5Stack assistant/M5Stack assistant-arduino/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/M5Stack assistant-arduino/test/README -------------------------------------------------------------------------------- /M5Stack assistant/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/readme.md -------------------------------------------------------------------------------- /M5Stack assistant/uiflow-simple-versions/advanced_free-busy-office-pomodoro.m5f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/uiflow-simple-versions/advanced_free-busy-office-pomodoro.m5f -------------------------------------------------------------------------------- /M5Stack assistant/uiflow-simple-versions/free-busy-office-pomodoro.m5f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/M5Stack assistant/uiflow-simple-versions/free-busy-office-pomodoro.m5f -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/README.md -------------------------------------------------------------------------------- /hebocon-watch/hebocon-watch.m5f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/hebocon-watch/hebocon-watch.m5f -------------------------------------------------------------------------------- /m5-atom/clicker-counter/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .clang_complete 3 | .gcc-flags.json 4 | -------------------------------------------------------------------------------- /m5-atom/clicker-counter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/.travis.yml -------------------------------------------------------------------------------- /m5-atom/clicker-counter/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /m5-atom/clicker-counter/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/.vscode/extensions.json -------------------------------------------------------------------------------- /m5-atom/clicker-counter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/.vscode/launch.json -------------------------------------------------------------------------------- /m5-atom/clicker-counter/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/include/README -------------------------------------------------------------------------------- /m5-atom/clicker-counter/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/lib/README -------------------------------------------------------------------------------- /m5-atom/clicker-counter/m5-flow-version/clicker_counter.m5f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/m5-flow-version/clicker_counter.m5f -------------------------------------------------------------------------------- /m5-atom/clicker-counter/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/platformio.ini -------------------------------------------------------------------------------- /m5-atom/clicker-counter/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/src/main.cpp -------------------------------------------------------------------------------- /m5-atom/clicker-counter/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/clicker-counter/test/README -------------------------------------------------------------------------------- /m5-atom/stress-tracking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/.gitignore -------------------------------------------------------------------------------- /m5-atom/stress-tracking/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/.vscode/extensions.json -------------------------------------------------------------------------------- /m5-atom/stress-tracking/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/include/README -------------------------------------------------------------------------------- /m5-atom/stress-tracking/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/lib/README -------------------------------------------------------------------------------- /m5-atom/stress-tracking/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/platformio.ini -------------------------------------------------------------------------------- /m5-atom/stress-tracking/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/src/main.cpp -------------------------------------------------------------------------------- /m5-atom/stress-tracking/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-atom/stress-tracking/test/README -------------------------------------------------------------------------------- /m5-daikin-controller/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .clang_complete 3 | .gcc-flags.json 4 | .vscode 5 | -------------------------------------------------------------------------------- /m5-daikin-controller/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/.travis.yml -------------------------------------------------------------------------------- /m5-daikin-controller/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /m5-daikin-controller/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/.vscode/extensions.json -------------------------------------------------------------------------------- /m5-daikin-controller/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/.vscode/launch.json -------------------------------------------------------------------------------- /m5-daikin-controller/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/include/README -------------------------------------------------------------------------------- /m5-daikin-controller/lib/DTH12/Adafruit_Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/lib/DTH12/Adafruit_Sensor.h -------------------------------------------------------------------------------- /m5-daikin-controller/lib/DTH12/DHT12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/lib/DTH12/DHT12.cpp -------------------------------------------------------------------------------- /m5-daikin-controller/lib/DTH12/DHT12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/lib/DTH12/DHT12.h -------------------------------------------------------------------------------- /m5-daikin-controller/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/lib/README -------------------------------------------------------------------------------- /m5-daikin-controller/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/platformio.ini -------------------------------------------------------------------------------- /m5-daikin-controller/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/src/main.cpp -------------------------------------------------------------------------------- /m5-daikin-controller/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-daikin-controller/test/README -------------------------------------------------------------------------------- /m5-samsung-controller/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .clang_complete 3 | .gcc-flags.json 4 | -------------------------------------------------------------------------------- /m5-samsung-controller/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/.travis.yml -------------------------------------------------------------------------------- /m5-samsung-controller/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/include/README -------------------------------------------------------------------------------- /m5-samsung-controller/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/lib/README -------------------------------------------------------------------------------- /m5-samsung-controller/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/platformio.ini -------------------------------------------------------------------------------- /m5-samsung-controller/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/src/main.cpp -------------------------------------------------------------------------------- /m5-samsung-controller/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarolinares/M5stack-programs/HEAD/m5-samsung-controller/test/README -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------