Files

37 lines
1.1 KiB
C++
Raw Permalink Normal View History

// Dummy main.cpp file for the PlatformIO project in the git repository.
// Primarily used to get IDE integration working (so the contents here don't
// matter at all, as long as it compiles).
// Not used during runtime nor for CI.
2019-04-17 12:06:00 +02:00
#include <esphome/components/gpio/switch/gpio_switch.h>
#include <esphome/components/logger/logger.h>
#include <esphome/components/esphome/ota/ota_esphome.h>
#include <esphome/components/wifi/wifi_component.h>
#include <esphome/core/application.h>
2019-04-17 12:06:00 +02:00
using namespace esphome;
void setup() {
static char name[] = "livingroom";
static char friendly_name[] = "LivingRoom";
App.pre_setup(name, sizeof(name) - 1, friendly_name, sizeof(friendly_name) - 1);
auto *log = new logger::Logger(115200); // NOLINT
2019-04-17 12:06:00 +02:00
log->pre_setup();
2022-10-20 16:50:39 +13:00
log->set_uart_selection(logger::UART_SELECTION_UART0);
App.register_component_(log);
2019-04-17 12:06:00 +02:00
auto *wifi = new wifi::WiFiComponent(); // NOLINT
App.register_component_(wifi);
2019-04-17 12:06:00 +02:00
wifi::WiFiAP ap;
ap.set_ssid("Test SSID");
ap.set_password("password1");
wifi->add_sta(ap);
auto *ota = new esphome::ESPHomeOTAComponent(); // NOLINT
ota->set_port(8266);
2019-04-17 12:06:00 +02:00
App.setup();
}
2019-05-24 23:08:04 +02:00
void loop() { App.loop(); }