mirror of
https://github.com/sweidac/kidsbox.git
synced 2025-07-27 19:31:54 +02:00
23 lines
464 B
C++
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");
|
|
}
|