Files
kidsbox/device/main/main.cpp
Simon Weidacher f189d35932 Initial commit.
2021-12-26 14:04:25 +01:00

23 lines
464 B
C++

/* This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
#include <string.h>
#include "wifi_connect.h"
extern "C" {
void app_main();
}
static const char *TAG = "KIDSBOX";
void app_main(void)
{
ESP_LOGI(TAG, "CONNECTED, quitting");
}