mirror of
https://github.com/esphome/esphome.git
synced 2025-10-30 06:33:51 +00:00
Update platformio.ini settings and fix test apps (#1815)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Otto Winter <otto@otto-winter.com>
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
// 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.
|
||||
|
||||
#include <esphome/core/application.h>
|
||||
#include <esphome/components/logger/logger.h>
|
||||
#include <esphome/components/wifi/wifi_component.h>
|
||||
@@ -7,7 +12,7 @@
|
||||
using namespace esphome;
|
||||
|
||||
void setup() {
|
||||
App.pre_setup("livingroom", __DATE__ " " __TIME__);
|
||||
App.pre_setup("livingroom", __DATE__ ", " __TIME__, false);
|
||||
auto *log = new logger::Logger(115200, 512, logger::UART_SELECTION_UART0);
|
||||
log->pre_setup();
|
||||
App.register_component(log);
|
||||
@@ -19,10 +24,12 @@ void setup() {
|
||||
ap.set_password("password1");
|
||||
wifi->add_sta(ap);
|
||||
|
||||
auto *ota = new ota::OTAComponent(8266);
|
||||
ota->start_safe_mode();
|
||||
auto *ota = new ota::OTAComponent();
|
||||
ota->set_port(8266);
|
||||
|
||||
auto *gpio = new gpio::GPIOSwitch("GPIO Switch", new GPIOPin(8, OUTPUT));
|
||||
auto *gpio = new gpio::GPIOSwitch();
|
||||
gpio->set_name("GPIO Switch");
|
||||
gpio->set_pin(new GPIOPin(8, OUTPUT, false));
|
||||
App.register_component(gpio);
|
||||
App.register_switch(gpio);
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
#include <esphome.h>
|
||||
|
||||
using namespace esphome;
|
||||
|
||||
void setup() {
|
||||
App.set_name("livingroom32");
|
||||
App.init_log();
|
||||
|
||||
App.init_wifi("YOUR_SSID", "YOUR_PASSWORD");
|
||||
App.init_mqtt("MQTT_HOST", "USERNAME", "PASSWORD");
|
||||
App.init_ota()->start_safe_mode();
|
||||
|
||||
// LEDC is only available on ESP32! for the ESP8266, take a look at App.make_esp8266_pwm_output().
|
||||
auto *red = App.make_ledc_output(32); // on pin 32
|
||||
auto *green = App.make_ledc_output(33);
|
||||
auto *blue = App.make_ledc_output(34);
|
||||
App.make_rgb_light("Livingroom Light", red, green, blue);
|
||||
|
||||
App.make_dht_sensor("Livingroom Temperature", "Livingroom Humidity", 12);
|
||||
App.make_status_binary_sensor("Livingroom Node Status");
|
||||
App.make_restart_switch("Livingroom Restart");
|
||||
|
||||
App.setup();
|
||||
}
|
||||
|
||||
void loop() { App.loop(); }
|
||||
Reference in New Issue
Block a user