59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
esphome:
|
|
name: "pflanzenleuchte"
|
|
friendly_name: "Pflanzenleuchte"
|
|
platformio_options:
|
|
board_build.flash_mode: dio
|
|
|
|
esp32:
|
|
board: esp32-c3-devkitm-1
|
|
variant: ESP32C3
|
|
framework:
|
|
type: esp-idf
|
|
|
|
logger:
|
|
|
|
api:
|
|
encryption:
|
|
key: !secret apikey_pflanzenleuchte
|
|
|
|
ota:
|
|
password: !secret otapass_pflanzenleuchte
|
|
|
|
wifi:
|
|
ssid: !secret wifi_ssid_bw
|
|
password: !secret wifi_password_bw
|
|
domain: .iot.bw.jalr.de
|
|
enable_on_boot: True
|
|
fast_connect: On
|
|
output_power: 8.5
|
|
|
|
sensor:
|
|
- platform: wifi_signal
|
|
name: "WiFi Signal Sensor"
|
|
update_interval: 60s
|
|
|
|
output:
|
|
- platform: ledc
|
|
pin: GPIO0
|
|
id: output_royal_blue
|
|
inverted: true
|
|
min_power: 0.25
|
|
zero_means_zero: true
|
|
- platform: ledc
|
|
pin: GPIO1
|
|
id: output_deep_red
|
|
inverted: true
|
|
min_power: 0.25
|
|
zero_means_zero: true
|
|
|
|
light:
|
|
- platform: monochromatic
|
|
name: "Royalblau"
|
|
id: royal_blue
|
|
output: output_royal_blue
|
|
gamma_correct: false
|
|
- platform: monochromatic
|
|
name: "Tiefrot"
|
|
id: deep_red
|
|
output: output_deep_red
|
|
gamma_correct: false
|