add esphome
This commit is contained in:
5
esphome/.gitignore
vendored
Normal file
5
esphome/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Gitignore settings for ESPHome
|
||||||
|
# This is an example and may include too much for your use-case.
|
||||||
|
# You can modify this file to suit your needs.
|
||||||
|
/.esphome/
|
||||||
|
/secrets.yaml
|
||||||
7
esphome/README.md
Normal file
7
esphome/README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# Installation
|
||||||
|
OTA Update Shelly Device to tasmota:
|
||||||
|
https://github.com/arendst/mgos-to-tasmota
|
||||||
|
In Tasmota make OTA Update to minimal:
|
||||||
|
http://ota.tasmota.com/tasmota/release/tasmota-minimal.bin.gz
|
||||||
|
Make ESPHome Configuration in Dashboard:
|
||||||
|
docker run --rm -p 6052:6052 -e ESPHOME_DASHBOARD_USE_PING=true -v "${PWD}":/config -it ghcr.io/esphome/esphome
|
||||||
66
esphome/bedroom-bulb-1.yaml
Normal file
66
esphome/bedroom-bulb-1.yaml
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
substitutions:
|
||||||
|
device_name: "bedroom-bulb-1"
|
||||||
|
friendly_name: "Bedroom Bulb 1"
|
||||||
|
|
||||||
|
esphome:
|
||||||
|
name: ${device_name}
|
||||||
|
comment: ${friendly_name}
|
||||||
|
platform: ESP8266
|
||||||
|
board: esp01_1m
|
||||||
|
on_boot:
|
||||||
|
then:
|
||||||
|
- light.turn_on: my_light
|
||||||
|
|
||||||
|
# Enable logging
|
||||||
|
logger:
|
||||||
|
|
||||||
|
web_server:
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
# Enable Home Assistant API
|
||||||
|
api:
|
||||||
|
|
||||||
|
ota:
|
||||||
|
platform: esphome
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
fast_connect: true
|
||||||
|
domain: .cloonar.smart
|
||||||
|
|
||||||
|
captive_portal:
|
||||||
|
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
id: my_light
|
||||||
|
name: ${friendly_name}
|
||||||
|
red: pwm_r
|
||||||
|
green: pwm_g
|
||||||
|
blue: pwm_b
|
||||||
|
white: pwm_w
|
||||||
|
effects:
|
||||||
|
- random:
|
||||||
|
- strobe:
|
||||||
|
- flicker:
|
||||||
|
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO13
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_r
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO12
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_g
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO14
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_b
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO5
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_w
|
||||||
67
esphome/bedroom-bulb-2.yaml
Normal file
67
esphome/bedroom-bulb-2.yaml
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
substitutions:
|
||||||
|
device_name: "bedroom-bulb-2"
|
||||||
|
friendly_name: "Bedroom Bulb 2"
|
||||||
|
|
||||||
|
esphome:
|
||||||
|
name: ${device_name}
|
||||||
|
comment: ${friendly_name}
|
||||||
|
platform: ESP8266
|
||||||
|
board: esp01_1m
|
||||||
|
on_boot:
|
||||||
|
then:
|
||||||
|
- light.turn_on: my_light
|
||||||
|
|
||||||
|
# Enable logging
|
||||||
|
logger:
|
||||||
|
|
||||||
|
web_server:
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
# Enable Home Assistant API
|
||||||
|
api:
|
||||||
|
|
||||||
|
ota:
|
||||||
|
platform: esphome
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
fast_connect: True
|
||||||
|
domain: .cloonar.smart
|
||||||
|
|
||||||
|
|
||||||
|
captive_portal:
|
||||||
|
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
id: my_light
|
||||||
|
name: ${friendly_name}
|
||||||
|
red: pwm_r
|
||||||
|
green: pwm_g
|
||||||
|
blue: pwm_b
|
||||||
|
white: pwm_w
|
||||||
|
effects:
|
||||||
|
- random:
|
||||||
|
- strobe:
|
||||||
|
- flicker:
|
||||||
|
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO13
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_r
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO12
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_g
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO14
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_b
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO5
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_w
|
||||||
66
esphome/bedroom-bulb-3.yaml
Normal file
66
esphome/bedroom-bulb-3.yaml
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
substitutions:
|
||||||
|
device_name: "bedroom-bulb-3"
|
||||||
|
friendly_name: "Bedroom Bulb 3"
|
||||||
|
|
||||||
|
esphome:
|
||||||
|
name: ${device_name}
|
||||||
|
comment: ${friendly_name}
|
||||||
|
platform: ESP8266
|
||||||
|
board: esp01_1m
|
||||||
|
on_boot:
|
||||||
|
then:
|
||||||
|
- light.turn_on: my_light
|
||||||
|
|
||||||
|
# Enable logging
|
||||||
|
logger:
|
||||||
|
|
||||||
|
web_server:
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
# Enable Home Assistant API
|
||||||
|
api:
|
||||||
|
|
||||||
|
ota:
|
||||||
|
platform: esphome
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
fast_connect: True
|
||||||
|
domain: .cloonar.smart
|
||||||
|
|
||||||
|
captive_portal:
|
||||||
|
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
id: my_light
|
||||||
|
name: ${friendly_name}
|
||||||
|
red: pwm_r
|
||||||
|
green: pwm_g
|
||||||
|
blue: pwm_b
|
||||||
|
white: pwm_w
|
||||||
|
effects:
|
||||||
|
- random:
|
||||||
|
- strobe:
|
||||||
|
- flicker:
|
||||||
|
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO13
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_r
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO12
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_g
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO14
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_b
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO5
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_w
|
||||||
66
esphome/bedroom-bulb-4.yaml
Normal file
66
esphome/bedroom-bulb-4.yaml
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
substitutions:
|
||||||
|
device_name: "bedroom-bulb-4"
|
||||||
|
friendly_name: "Bedroom Bulb 4"
|
||||||
|
|
||||||
|
esphome:
|
||||||
|
name: ${device_name}
|
||||||
|
comment: ${friendly_name}
|
||||||
|
platform: ESP8266
|
||||||
|
board: esp01_1m
|
||||||
|
on_boot:
|
||||||
|
then:
|
||||||
|
- light.turn_on: my_light
|
||||||
|
|
||||||
|
# Enable logging
|
||||||
|
logger:
|
||||||
|
|
||||||
|
web_server:
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
# Enable Home Assistant API
|
||||||
|
api:
|
||||||
|
|
||||||
|
ota:
|
||||||
|
platform: esphome
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
fast_connect: True
|
||||||
|
domain: .cloonar.smart
|
||||||
|
|
||||||
|
captive_portal:
|
||||||
|
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
id: my_light
|
||||||
|
name: ${friendly_name}
|
||||||
|
red: pwm_r
|
||||||
|
green: pwm_g
|
||||||
|
blue: pwm_b
|
||||||
|
white: pwm_w
|
||||||
|
effects:
|
||||||
|
- random:
|
||||||
|
- strobe:
|
||||||
|
- flicker:
|
||||||
|
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO13
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_r
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO12
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_g
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO14
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_b
|
||||||
|
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
pin: GPIO5
|
||||||
|
frequency: 1000 Hz
|
||||||
|
id: pwm_w
|
||||||
Reference in New Issue
Block a user