├── .gitignore ├── BUTTON.md ├── Board ├── EAGLE │ ├── board_W32_v1.png │ └── scheme_eagle.png ├── ESP32_dimension.png ├── device_v1_1.JPG ├── device_v1_2.JPG ├── device_v1_3.JPG ├── device_v1_4.JPG ├── device_v1_5.JPG ├── esp32_devkit.png ├── esp32_devkit_removed.png └── scheme_eagle.png ├── LICENSE ├── Making.md ├── README.md ├── images ├── IMG_7866.JPG ├── IMG_7867.JPG ├── IMG_7868.JPG └── IMG_7869.JPG ├── platformio.ini └── src ├── Logging.h ├── button.h ├── counter.h ├── led.h ├── main.cpp ├── sender_blynk.h ├── sender_blynk_nbiot.h ├── sender_coap.h ├── sender_json.h ├── setup.h ├── setup_ap.cpp ├── setup_ap.h ├── ulp.h ├── ulp_macro.c ├── utils.cpp ├── utils.h ├── vcc.h ├── wifi_settings.cpp └── wifi_settings.h /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode 3 | -------------------------------------------------------------------------------- /BUTTON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/BUTTON.md -------------------------------------------------------------------------------- /Board/EAGLE/board_W32_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/EAGLE/board_W32_v1.png -------------------------------------------------------------------------------- /Board/EAGLE/scheme_eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/EAGLE/scheme_eagle.png -------------------------------------------------------------------------------- /Board/ESP32_dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/ESP32_dimension.png -------------------------------------------------------------------------------- /Board/device_v1_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/device_v1_1.JPG -------------------------------------------------------------------------------- /Board/device_v1_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/device_v1_2.JPG -------------------------------------------------------------------------------- /Board/device_v1_3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/device_v1_3.JPG -------------------------------------------------------------------------------- /Board/device_v1_4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/device_v1_4.JPG -------------------------------------------------------------------------------- /Board/device_v1_5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/device_v1_5.JPG -------------------------------------------------------------------------------- /Board/esp32_devkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/esp32_devkit.png -------------------------------------------------------------------------------- /Board/esp32_devkit_removed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/esp32_devkit_removed.png -------------------------------------------------------------------------------- /Board/scheme_eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Board/scheme_eagle.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/LICENSE -------------------------------------------------------------------------------- /Making.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/Making.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/README.md -------------------------------------------------------------------------------- /images/IMG_7866.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/images/IMG_7866.JPG -------------------------------------------------------------------------------- /images/IMG_7867.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/images/IMG_7867.JPG -------------------------------------------------------------------------------- /images/IMG_7868.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/images/IMG_7868.JPG -------------------------------------------------------------------------------- /images/IMG_7869.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/images/IMG_7869.JPG -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/Logging.h -------------------------------------------------------------------------------- /src/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/button.h -------------------------------------------------------------------------------- /src/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/counter.h -------------------------------------------------------------------------------- /src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/led.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/sender_blynk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/sender_blynk.h -------------------------------------------------------------------------------- /src/sender_blynk_nbiot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/sender_blynk_nbiot.h -------------------------------------------------------------------------------- /src/sender_coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/sender_coap.h -------------------------------------------------------------------------------- /src/sender_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/sender_json.h -------------------------------------------------------------------------------- /src/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/setup.h -------------------------------------------------------------------------------- /src/setup_ap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/setup_ap.cpp -------------------------------------------------------------------------------- /src/setup_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/setup_ap.h -------------------------------------------------------------------------------- /src/ulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/ulp.h -------------------------------------------------------------------------------- /src/ulp_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/ulp_macro.c -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/vcc.h -------------------------------------------------------------------------------- /src/wifi_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/wifi_settings.cpp -------------------------------------------------------------------------------- /src/wifi_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OloloevReal/Waterius32/HEAD/src/wifi_settings.h --------------------------------------------------------------------------------