-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documenatation with HomeAssistant api option
- Loading branch information
Showing
4 changed files
with
76 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
esphome: | ||
name: <your-esphome-entity-name> | ||
platform: ESP8266 | ||
board: esp12e | ||
|
||
wifi: | ||
ssid: "<enter_wifi_ssid_here>" | ||
password: "<enter_wifi_password_here>" | ||
fast_connect: true | ||
power_save_mode: high | ||
# Static ip is recommended for faster connection times | ||
manual_ip: | ||
static_ip: <your_static_ip_here> | ||
gateway: <youer_gateway_here> | ||
subnet: 255.255.255.0 | ||
dns1: <optionally_your_dns_server_here> | ||
|
||
switch: | ||
platform: shutdown | ||
name: <your-sensor-name-shutdown> | ||
id: "shutdown" | ||
|
||
binary_sensor: | ||
platform: status | ||
name: <your-sensor-name-here> | ||
device_class: window | ||
|
||
sensor: | ||
platform: adc | ||
pin: VCC | ||
name: <your-sensor-name>-voltage | ||
|
||
# Enable logging | ||
logger: | ||
|
||
# Enable Home Assistant API | ||
api: | ||
|
||
ota: |
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.