mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-08 05:27:09 +00:00
16 lines
426 B
C
16 lines
426 B
C
// SPDX-FileCopyrightText: 2024 Cesanta Software Limited
|
|
// SPDX-License-Identifier: GPL-2.0-only or commercial
|
|
// Generated by Mongoose Wizard, https://mongoose.ws/wizard/
|
|
|
|
#include "mongoose_glue.h"
|
|
|
|
#define WIFI_SSID "IoT_bots"
|
|
#define WIFI_PASS "208208208"
|
|
|
|
extern void wifi_init(const char *ssid, const char *pass);
|
|
|
|
void app_main() {
|
|
wifi_init(WIFI_SSID, WIFI_PASS); // This blocks until connected
|
|
run_mongoose();
|
|
}
|