Initial commit.

This commit is contained in:
Simon Weidacher
2021-12-26 14:04:25 +01:00
commit f189d35932
9 changed files with 199 additions and 0 deletions

22
device/main/main.cpp Normal file
View File

@@ -0,0 +1,22 @@
/* 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");
}