Skip to content

Instantly share code, notes, and snippets.

View cgawron's full-sized avatar

Christian Gawron cgawron

View GitHub Profile
@cgawron
cgawron / beispiel_html5.markdown
Created February 4, 2019 21:49
Beispiel_HTML5
@cgawron
cgawron / esp_mqtt_ota.c
Created May 3, 2018 05:16
ESP32 OTA with espmqtt
static void handle_ota(esp_mqtt_event_handle_t event, char *path[], int numComponents)
{
esp_err_t err;
static esp_ota_handle_t update_handle = 0;
if (numComponents < 3)
{
ESP_LOGW(TAG, "too few components");
return;
}