forked from esphome/esphome-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64159dd
commit 3d9c446
Showing
7 changed files
with
133 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// Created by Otto Winter on 24.01.18. | ||
// | ||
|
||
#include <esphomelib/application.h> | ||
|
||
using namespace esphomelib; | ||
|
||
Application app; | ||
|
||
void setup() { | ||
app.set_name("livingroom-fan"); | ||
app.init_log(); | ||
|
||
app.init_wifi("YOUR_SSID", "YOUR_PASSWORD"); | ||
app.init_mqtt("MQTT_HOST", "USERNAME", "PASSWORD"); | ||
app.init_ota(); | ||
|
||
auto binary_fan = app.make_fan("Binary Fan"); | ||
binary_fan.output->set_binary(app.make_gpio_binary_output(32)); | ||
|
||
auto speed_fan = app.make_fan("Speed Fan"); | ||
// 0.0 -> off speed | ||
// 0.33 -> low speed | ||
// 0.66 -> medium speed | ||
// 1.0 -> high speed | ||
speed_fan.output->set_speed(app.make_ledc_component(33), 0.0, 0.33, 0.66, 1.0); | ||
|
||
auto oscillating_fan = app.make_fan("Oscillating Fan"); | ||
oscillating_fan.output->set_binary(app.make_gpio_binary_output(34)); | ||
oscillating_fan.output->set_oscillation(app.make_gpio_binary_output(35)); | ||
|
||
app.setup(); | ||
} | ||
|
||
void loop() { | ||
app.loop(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
This directory is intended for the project specific (private) libraries. | ||
PlatformIO will compile them to static libraries and link to executable file. | ||
|
||
The source code of each library should be placed in separate directory, like | ||
"lib/private_lib/[here are source files]". | ||
|
||
For example, see how can be organized `Foo` and `Bar` libraries: | ||
|
||
|--lib | ||
| |--Bar | ||
| | |--docs | ||
| | |--examples | ||
| | |--src | ||
| | |- Bar.c | ||
| | |- Bar.h | ||
| |--Foo | ||
| | |- Foo.c | ||
| | |- Foo.h | ||
| |- readme.txt --> THIS FILE | ||
|- platformio.ini | ||
|--src | ||
|- main.c | ||
|
||
Then in `src/main.c` you should use: | ||
|
||
#include <Foo.h> | ||
#include <Bar.h> | ||
|
||
// rest H/C/CPP code | ||
|
||
PlatformIO will find your libraries automatically, configure preprocessor's | ||
include paths and build them. | ||
|
||
More information about PlatformIO Library Dependency Finder | ||
- http://docs.platformio.org/page/librarymanager/ldf.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters