main/iotbalkon.c

Sun, 26 Mar 2023 22:22:45 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 26 Mar 2023 22:22:45 +0200
changeset 0
f8b0268c8d0a
child 1
1c9894662795
permissions
-rw-r--r--

Initial project setup



#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include "esp_log.h"



static const char *TAG = "iotbalkon";

void app_main(void)
{
    ESP_LOGI(TAG, "Starting");
}

mercurial