├── .gitignore ├── BLE_write └── BLE_write.ino ├── BlinkWithoutDelay └── BlinkWithoutDelay.ino ├── README.md ├── RGBWstrandtest └── RGBWstrandtest.ino ├── Schematic └── ESP32-C3FH4-RGB Schematic.pdf ├── SimpleWifiTest └── SimpleWifiTest │ └── SimpleWifiTest.ino ├── WiFi.softAP └── WiFi.softAP.ino ├── driver ├── 1.jpg ├── 2.jpg └── 3.jpg ├── strandtest_wheel └── strandtest_wheel.ino └── thinger.io ├── arduino_secrets.h └── thinger.io.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/.gitignore -------------------------------------------------------------------------------- /BLE_write/BLE_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/BLE_write/BLE_write.ino -------------------------------------------------------------------------------- /BlinkWithoutDelay/BlinkWithoutDelay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/BlinkWithoutDelay/BlinkWithoutDelay.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/README.md -------------------------------------------------------------------------------- /RGBWstrandtest/RGBWstrandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/RGBWstrandtest/RGBWstrandtest.ino -------------------------------------------------------------------------------- /Schematic/ESP32-C3FH4-RGB Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/Schematic/ESP32-C3FH4-RGB Schematic.pdf -------------------------------------------------------------------------------- /SimpleWifiTest/SimpleWifiTest/SimpleWifiTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/SimpleWifiTest/SimpleWifiTest/SimpleWifiTest.ino -------------------------------------------------------------------------------- /WiFi.softAP/WiFi.softAP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/WiFi.softAP/WiFi.softAP.ino -------------------------------------------------------------------------------- /driver/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/driver/1.jpg -------------------------------------------------------------------------------- /driver/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/driver/2.jpg -------------------------------------------------------------------------------- /driver/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/driver/3.jpg -------------------------------------------------------------------------------- /strandtest_wheel/strandtest_wheel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/strandtest_wheel/strandtest_wheel.ino -------------------------------------------------------------------------------- /thinger.io/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/thinger.io/arduino_secrets.h -------------------------------------------------------------------------------- /thinger.io/thinger.io.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/01Space/ESP32-C3FH4-RGB/HEAD/thinger.io/thinger.io.ino --------------------------------------------------------------------------------