ESP32
Similar to Arduino.
SoftAP https://randomnerdtutorials.com/esp32-access-point-ap-web-server/
ESP-NOW https://randomnerdtutorials.com/esp-now-esp32-arduino-ide/
OTA updates https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/system/ota.html
Error handling
It’s actually quite cool, the same software engineering that I’m learning.
Two main ones:
ESP_ERROR_CHECK
(throws behavior, basically an assert)ESP_RETURN_ON_ERROR
(silent throw)