2025-02-01 10:30:18 -05:00
|
|
|
# esp
|
|
|
|
|
|
|
|
```bash
|
|
|
|
shaunrd0/klips/esp/
|
|
|
|
├── 01_led-button # Simple LED circuit controlled by an on board button.
|
|
|
|
├── 02_led-button-web # LED controlled by a button or within a web browser.
|
2025-02-01 14:34:07 -05:00
|
|
|
├── 03_temp-humidity-web # Temperature and humidity sensor within a web browser.
|
2025-02-07 18:51:56 -05:00
|
|
|
├── 04_esp-idf-arduino # CMake example instead of Arduino IDE for ESP development.
|
2025-02-08 12:48:21 -05:00
|
|
|
├── 05_temp-humidity-web # Temperature and humidity sensor within a web browser.
|
2025-02-01 10:30:18 -05:00
|
|
|
├── ESP32-basic-starter-kit.pdf # PDF for tutorials in ESP32 starter kit.
|
|
|
|
├── ESP32-dev-module.png
|
|
|
|
└── README.md
|
|
|
|
```
|
|
|
|
|
2025-02-07 18:51:56 -05:00
|
|
|
Examples 1-3 are built using the Arduino IDE.
|
2025-02-01 10:30:18 -05:00
|
|
|
|
2025-02-07 18:51:56 -05:00
|
|
|
All examples after `04_esp-idf-arduino` are built with cmake and the [ESP-IDF](https://github.com/espressif/esp-idf).
|
2025-02-01 10:30:18 -05:00
|
|
|
|
|
|
|
[Arduino ESP32 GitHub](https://github.com/espressif/arduino-esp32) \
|
2025-02-08 12:48:21 -05:00
|
|
|
[Arduino ESP32 API reference](https://docs.espressif.com/projects/arduino-esp32/en/latest/libraries.html)
|