backup 20240718
This commit is contained in:
@@ -38,12 +38,13 @@ fan:
|
||||
restore_mode: RESTORE_DEFAULT_ON
|
||||
|
||||
# Example configuration entry
|
||||
dallas:
|
||||
- pin: ${pin_temp}
|
||||
one_wire:
|
||||
- platform: gpio
|
||||
pin: ${pin_temp}
|
||||
|
||||
# Individual sensors
|
||||
sensor:
|
||||
- platform: dallas
|
||||
- platform: dallas_temp
|
||||
address: 0x59800000081fd028
|
||||
name: "Radiataor Temperature"
|
||||
id: radtemperature
|
||||
|
||||
@@ -1,165 +0,0 @@
|
||||
substitutions:
|
||||
device_name: "blinds-speelkamer"
|
||||
friendly_name: "blinds speelkamer"
|
||||
comment: "esp32c3, motor, encoder"
|
||||
location: "speelkamer"
|
||||
api_password: !secret blinds_api
|
||||
ota_password: !secret ota_password
|
||||
wifi_ssid: !secret wifi_ssid
|
||||
wifi_password: !secret wifi_password
|
||||
gateway: !secret ip_gateway
|
||||
subnet: !secret ip_subnet
|
||||
ip: !secret blinds_ip
|
||||
update_interval: 30s
|
||||
pin_mot1: GPIO3
|
||||
pin_mot2: GPIO2
|
||||
pin_enc1: GPIO7
|
||||
pin_enc2: GPIO8
|
||||
pin_sw1: GPIO9
|
||||
pin_sw2: GPIO10
|
||||
|
||||
packages:
|
||||
board: !include boards/esp32-C3.yaml
|
||||
device_base: !include common/common.yaml
|
||||
connection: !include common/wifi.yaml
|
||||
logger: !include templates/logger.yaml
|
||||
|
||||
binary_sensor:
|
||||
- platform: gpio
|
||||
id: endstop1
|
||||
name: endstop1
|
||||
pin:
|
||||
number: ${pin_sw1}
|
||||
mode:
|
||||
input: true
|
||||
pullup: true
|
||||
inverted: true
|
||||
on_press:
|
||||
then:
|
||||
- sensor.rotary_encoder.set_value:
|
||||
id: encoder1
|
||||
value: 0
|
||||
- platform: gpio
|
||||
id: endstop2
|
||||
name: endstop2
|
||||
pin:
|
||||
number: ${pin_sw2}
|
||||
mode:
|
||||
input: true
|
||||
pullup: true
|
||||
inverted: true
|
||||
|
||||
|
||||
|
||||
globals:
|
||||
- id: min_tilt
|
||||
type: int
|
||||
restore_value: true
|
||||
initial_value: "0"
|
||||
- id: max_tilt
|
||||
type: int
|
||||
restore_value: true
|
||||
initial_value: "2328"
|
||||
|
||||
script:
|
||||
- id: tilt_left
|
||||
then:
|
||||
- switch.turn_off: positive
|
||||
- switch.turn_on: negative
|
||||
- id: tilt_right
|
||||
then:
|
||||
- switch.turn_off: negative
|
||||
- switch.turn_on: positive
|
||||
- id: tilt_stop
|
||||
then:
|
||||
- switch.turn_off: negative
|
||||
- switch.turn_off: positive
|
||||
|
||||
|
||||
sensor:
|
||||
- platform: rotary_encoder
|
||||
name: "Rotary Encoder"
|
||||
id: 'encoder1'
|
||||
pin_a: ${pin_enc1}
|
||||
pin_b: ${pin_enc2}
|
||||
publish_initial_value: True
|
||||
#restore_mode: RESTORE_DEFAULT_ZERO
|
||||
# on_value:
|
||||
# then:
|
||||
# - lambda: |-
|
||||
# id(blind).position = x / (id(max_tilt)-id(min_tilt));
|
||||
# id(blind).publish_state();
|
||||
|
||||
|
||||
# Exposed switches.
|
||||
switch:
|
||||
- platform: template
|
||||
id: resetc
|
||||
name: Reset count
|
||||
turn_on_action:
|
||||
then:
|
||||
- sensor.rotary_encoder.set_value:
|
||||
id: encoder1
|
||||
value: 0
|
||||
- switch.turn_off: resetc
|
||||
- platform: restart
|
||||
name: restart
|
||||
- platform: output
|
||||
name: "shade1"
|
||||
output: 'shade1'
|
||||
internal: true
|
||||
id: negative
|
||||
- platform: output
|
||||
name: "shade2"
|
||||
output: 'shade2'
|
||||
internal: true
|
||||
id: positive
|
||||
|
||||
output:
|
||||
- platform: gpio
|
||||
id: 'shade1'
|
||||
pin: ${pin_mot1}
|
||||
- platform: gpio
|
||||
id: 'shade2'
|
||||
pin: ${pin_mot2}
|
||||
|
||||
cover:
|
||||
- platform: endstop
|
||||
device_class: blind
|
||||
name: "speelkamer blind"
|
||||
#optimistic: TRUE
|
||||
id: blind
|
||||
#has_position: true
|
||||
# lambda: |-
|
||||
# if(id(endstop1).state & id(blind).current_operation == CoverOperation::COVER_OPERATION_CLOSING)
|
||||
# {
|
||||
# id(tilt_stop).execute();
|
||||
# return COVER_CLOSED;
|
||||
# }
|
||||
# else if(id(endstop2).state & id(blind).current_operation == CoverOperation::COVER_OPERATION_OPENING)
|
||||
# {
|
||||
# id(tilt_stop).execute();
|
||||
# return COVER_OPEN;
|
||||
# }
|
||||
# return {};
|
||||
|
||||
open_endstop: endstop2
|
||||
open_duration: 5s
|
||||
close_endstop: endstop1
|
||||
close_duration: 5s
|
||||
stop_action:
|
||||
then:
|
||||
- script.execute: tilt_stop
|
||||
|
||||
open_action:
|
||||
then:
|
||||
- script.execute: tilt_right
|
||||
|
||||
close_action:
|
||||
then:
|
||||
- script.execute: tilt_left
|
||||
|
||||
# on_open:
|
||||
# - logger.log: "Cover is Open!"
|
||||
# on_closed:
|
||||
# - logger.log: "Cover is Closed!"
|
||||
5
esphome/boards/esp32-S3a.yaml
Executable file
5
esphome/boards/esp32-S3a.yaml
Executable file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
esp32:
|
||||
board: esp32-s3-devkitc-1
|
||||
framework:
|
||||
type: arduino
|
||||
38
esphome/boards/esp32s3box.yaml
Normal file
38
esphome/boards/esp32s3box.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
esp32:
|
||||
board: esp32s3box
|
||||
flash_size: 16MB
|
||||
framework:
|
||||
type: esp-idf
|
||||
version: 4.4.6
|
||||
sdkconfig_options:
|
||||
CONFIG_ESP32S3_DEFAULT_CPU_FREQ_240: "y"
|
||||
CONFIG_ESP32S3_DATA_CACHE_64KB: "y"
|
||||
CONFIG_ESP32S3_DATA_CACHE_LINE_64B: "y"
|
||||
CONFIG_AUDIO_BOARD_CUSTOM: "y"
|
||||
CONFIG_ESP32_S3_BOX_3_BOARD: "y"
|
||||
components:
|
||||
- name: esp32_s3_box_3_board
|
||||
source: github://jesserockz/esp32-s3-box-3-board@main
|
||||
refresh: 0s
|
||||
# components:
|
||||
# - name: esp32_s3_box_3_board
|
||||
# source: github://X-Ryl669/esp32-s3-box-3-board@main
|
||||
# refresh: 0s
|
||||
psram:
|
||||
mode: octal
|
||||
speed: 80MHz
|
||||
|
||||
external_components:
|
||||
- source: github://pr#5230
|
||||
components: esp_adf
|
||||
refresh: 0s
|
||||
# - source: github://X-Ryl669/esphome@esp-adf-take2 #pr#5230
|
||||
# components: [esp_adf]
|
||||
# refresh: 0s
|
||||
# - source: github://X-Ryl669/esphome@at581x
|
||||
# components: at581x
|
||||
# refresh: 0s
|
||||
# - source: github://pr#5894 #5198
|
||||
# components: [ahtxx]
|
||||
# refresh: 60s
|
||||
@@ -1,45 +1,37 @@
|
||||
# ESPHome code for the LilyGO TTGO Display
|
||||
# Copyright 2023 by Smart Home Junkie
|
||||
#
|
||||
# Visit my website at https://www.smarthomejunkie.net
|
||||
# Watch the tutorial for this display and code at https://youtu.be/LJCeelAzlS0
|
||||
|
||||
substitutions:
|
||||
esp_name: "ttgo-display"
|
||||
device_name: "ttgo-display"
|
||||
friendly_name: "ttgo-display"
|
||||
comment: "esp32, display, distance"
|
||||
api_password: !secret ttgo-t-display_api
|
||||
ota_password: !secret ota_password
|
||||
wifi_ssid: !secret wifi_ssid
|
||||
wifi_password: !secret wifi_password
|
||||
gateway: !secret ip_gateway
|
||||
subnet: !secret ip_subnet
|
||||
ip: !secret ttgo-t-display_ip
|
||||
pin_sda: GPIO21
|
||||
pin_scl: GPIO22
|
||||
pin_but0: GPIO0
|
||||
pin_but1: GPIO35
|
||||
pin_spi_clk: GPIO18
|
||||
pin_spi_mosi: GPIO19
|
||||
pin_lcd_bl: GPIO4
|
||||
pin_lcd_cs: GPIO5
|
||||
pin_lcd_dc: GPIO16
|
||||
pin_lcd_rst: GPIO23
|
||||
|
||||
esphome:
|
||||
name: ${esp_name}
|
||||
comment: ${esp_name}
|
||||
|
||||
# Enable Home Assistant API
|
||||
api:
|
||||
encryption:
|
||||
key: !secret ttgo
|
||||
|
||||
# Define board type
|
||||
esp32:
|
||||
board: esp32dev
|
||||
|
||||
# Enable logging
|
||||
logger:
|
||||
|
||||
ota:
|
||||
password: !secret aqs1_ota_passwoord
|
||||
|
||||
wifi:
|
||||
ssid: !secret wifi_ssid
|
||||
password: !secret wifi_password
|
||||
|
||||
# Enable fallback hotspot (captive portal) in case wifi connection fails
|
||||
ap:
|
||||
ssid: ${esp_name} fallback
|
||||
password: !secret fallback_password
|
||||
|
||||
captive_portal:
|
||||
packages:
|
||||
board: !include boards/esp32_wroom_arduino.yaml
|
||||
device_base: !include common/common.yaml
|
||||
connection: !include common/wifi.yaml
|
||||
logger: !include templates/logger.yaml
|
||||
time: !include templates/time.yaml
|
||||
|
||||
spi:
|
||||
clk_pin: GPIO18
|
||||
mosi_pin: GPIO19
|
||||
clk_pin: ${pin_spi_clk}
|
||||
mosi_pin: ${pin_spi_mosi}
|
||||
|
||||
# Define the rotate variable. This indicates if the pages should be rotated or not
|
||||
globals:
|
||||
@@ -47,16 +39,12 @@ globals:
|
||||
type: boolean
|
||||
initial_value: "true"
|
||||
|
||||
# Define time sensor
|
||||
time:
|
||||
- platform: homeassistant
|
||||
id: esptime
|
||||
|
||||
# Define binary sensors
|
||||
binary_sensor:
|
||||
- platform: gpio # Short Press button 0
|
||||
pin:
|
||||
number: GPIO0
|
||||
number: ${pin_but0}
|
||||
inverted: true
|
||||
mode:
|
||||
input: true
|
||||
@@ -69,31 +57,9 @@ binary_sensor:
|
||||
then:
|
||||
- display.page.show_previous: my_display
|
||||
- component.update: my_display
|
||||
- platform: gpio # Long Press button 0
|
||||
pin:
|
||||
number: GPIO0
|
||||
inverted: true
|
||||
id: button_2
|
||||
on_click:
|
||||
min_length: 1001ms
|
||||
max_length: 5000ms
|
||||
then:
|
||||
- switch.toggle: backlight
|
||||
- platform: gpio # Short Press button 1
|
||||
pin:
|
||||
number: GPIO35
|
||||
inverted: true
|
||||
name: "Short Press Button 1"
|
||||
id: short_press_button_1
|
||||
on_click:
|
||||
min_length: 1ms
|
||||
max_length: 1000ms
|
||||
then:
|
||||
- display.page.show_next: my_display
|
||||
- component.update: my_display
|
||||
- platform: gpio # Long Press button 1
|
||||
pin:
|
||||
number: GPIO35
|
||||
number: ${pin_but1}
|
||||
inverted: true
|
||||
name: "Long Press Button 1"
|
||||
id: long_press_button_1
|
||||
@@ -114,28 +80,9 @@ binary_sensor:
|
||||
id: rotate
|
||||
value: "true"
|
||||
|
||||
# Allow dimmable control of the backlight (pin GPIO4) - Currently not working
|
||||
output:
|
||||
- platform: ledc
|
||||
pin: GPIO4
|
||||
id: gpio4
|
||||
|
||||
light:
|
||||
- platform: monochromatic
|
||||
output: gpio4
|
||||
name: "Backlight"
|
||||
|
||||
switch:
|
||||
- platform: gpio
|
||||
pin: GPIO4
|
||||
id: backlight
|
||||
internal: true
|
||||
|
||||
# Define all the numeric sensors used
|
||||
sensor:
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.subscriptions_short
|
||||
id: subscriptions
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.views
|
||||
id: views
|
||||
@@ -144,17 +91,11 @@ sensor:
|
||||
attribute: netto_power
|
||||
id: nettopower
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.Temperatuur_Zolder_Werkkamer
|
||||
entity_id: sensor.esp32_s2_aqs_ikea_temperature
|
||||
id: office_temperature
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.humidity_zolder_werkkamer
|
||||
entity_id: sensor.esp32_s2_aqs_ikea_humidity
|
||||
id: office_humidity
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.office_multi_sensor_pressure
|
||||
id: office_pressure
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.office_light_sensor
|
||||
id: office_light_sensor
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.ttgo_display_data
|
||||
attribute: temperature
|
||||
@@ -164,7 +105,7 @@ sensor:
|
||||
attribute: wind_speed
|
||||
id: wind_speed
|
||||
- platform: homeassistant
|
||||
entity_id: sensor.bitcoin
|
||||
entity_id: sensor.exchange_rate_1_btc
|
||||
id: bitcoin
|
||||
|
||||
# Define all the string sensors used
|
||||
@@ -274,7 +215,7 @@ graph:
|
||||
duration: 4h
|
||||
width: 220
|
||||
height: 90
|
||||
x_grid: 1h
|
||||
x_grid: 1min
|
||||
y_grid: 5
|
||||
min_range: 5
|
||||
max_range: 35
|
||||
@@ -286,31 +227,31 @@ graph:
|
||||
duration: 4h
|
||||
width: 220
|
||||
height: 90
|
||||
x_grid: 1h
|
||||
x_grid: 1min
|
||||
y_grid: 25
|
||||
min_range: 1
|
||||
max_range: 100
|
||||
min_value: 1
|
||||
max_value: 100
|
||||
color: BLUE
|
||||
- id: office_pressure_graph
|
||||
sensor: office_pressure
|
||||
- id: power_graph
|
||||
sensor: nettopower
|
||||
duration: 4h
|
||||
width: 220
|
||||
height: 90
|
||||
x_grid: 1h
|
||||
x_grid: 15min
|
||||
y_grid: 100.0
|
||||
color: YELLOW
|
||||
- id: office_light_sensor_graph
|
||||
duration: 4h
|
||||
width: 220
|
||||
height: 90
|
||||
x_grid: 1h
|
||||
traces:
|
||||
- sensor: office_light_sensor
|
||||
color: ORANGE
|
||||
line_type: SOLID
|
||||
line_thickness: 5
|
||||
# - id: office_light_sensor_graph
|
||||
# duration: 4h
|
||||
# width: 220
|
||||
# height: 90
|
||||
# x_grid: 1h
|
||||
# traces:
|
||||
# - sensor: office_light_sensor
|
||||
# color: ORANGE
|
||||
# line_type: SOLID
|
||||
# line_thickness: 5
|
||||
|
||||
# Define qr code locations
|
||||
qr_code:
|
||||
@@ -321,51 +262,28 @@ qr_code:
|
||||
display:
|
||||
- platform: st7789v
|
||||
model: TTGO_TDISPLAY_135x240
|
||||
backlight_pin: GPIO4
|
||||
cs_pin: GPIO5
|
||||
dc_pin: GPIO16
|
||||
reset_pin: GPIO23
|
||||
backlight_pin: ${pin_lcd_bl}
|
||||
cs_pin: ${pin_lcd_cs}
|
||||
dc_pin: ${pin_lcd_dc}
|
||||
reset_pin: ${pin_lcd_rst}
|
||||
rotation: 90°
|
||||
update_interval: 1s
|
||||
id: my_display
|
||||
pages: # Define the pages
|
||||
# - id: showintro
|
||||
# lambda: |-
|
||||
# it.image(0, 10, id(logo));
|
||||
# it.printf(135, 10, id(latoblack), WHITE, "SMART");
|
||||
# it.printf(140, 50, id(latoblack), WHITE, "HOME");
|
||||
# it.printf(130, 90, id(latoblack), WHITE, "JUNKIE");
|
||||
- id: showtime
|
||||
lambda: |-
|
||||
it.strftime(45, 20, id(latoblack), "%d-%m-%Y", id(esptime).now());
|
||||
it.strftime(25, 55, id(latoblackheading1), "%H:%M:%S", id(esptime).now());
|
||||
# - id: showsubscribers
|
||||
# lambda: |-
|
||||
# it.printf(0,0,id(latoblack), WHITE, "SUBSCRIBERS");
|
||||
# it.image(0, 40, id(youtube_image));
|
||||
# if (id(subscriptions).has_state()) {
|
||||
# it.printf(95, 60, id(latoblack), WHITE, "%.1fK", id(subscriptions).state);
|
||||
# } else {
|
||||
# it.printf(95, 65, id(lato), WHITE, "LOADING...");
|
||||
# }
|
||||
# - id: showviews
|
||||
# lambda: |-
|
||||
# it.printf(0,0,id(latoblack), WHITE, "VIEWS");
|
||||
# it.image(0, 40, id(youtube_image));
|
||||
# if (id(views).has_state()) {
|
||||
# it.printf(95, 60, id(latoblack), WHITE, "%.0f", id(views).state);
|
||||
# } else {
|
||||
# it.printf(95, 65, id(lato), WHITE, "LOADING...");
|
||||
# }
|
||||
it.strftime(45, 20, id(latoblack), "%d-%m-%Y", id(homeassistant_time).now());
|
||||
it.strftime(25, 55, id(latoblackheading1), "%H:%M:%S", id(homeassistant_time).now());
|
||||
|
||||
- id: shownettopower
|
||||
lambda: |-
|
||||
it.printf(0,0,id(latoblack), WHITE, "NETTO POWER");
|
||||
it.image(0, 40, id(electricity_image));
|
||||
if (id(nettopower).has_state()) {
|
||||
if (id(nettopower).state > -1000) {
|
||||
it.printf(95, 60, id(latoblack), WHITE, "%.0f Watt", id(nettopower).state);
|
||||
it.printf(95, 60, id(latoblack), WHITE, "%.2f kWh", id(nettopower).state);
|
||||
} else {
|
||||
it.printf(95, 60, id(latobold), WHITE, "%.0f Watt", id(nettopower).state);
|
||||
it.printf(95, 60, id(latobold), WHITE, "%.2f kWh", id(nettopower).state);
|
||||
}
|
||||
} else {
|
||||
it.printf(95, 65, id(lato), WHITE, "LOADING...");
|
||||
@@ -397,15 +315,15 @@ display:
|
||||
it.printf(0,0,id(latoblack), WHITE, "HUMIDITY");
|
||||
it.printf(80, 65, id(lato), WHITE, "LOADING...");
|
||||
}
|
||||
# - id: show_office_pressure_graph
|
||||
# lambda: |-
|
||||
# if (id(office_pressure).has_state()) {
|
||||
# it.printf(0,0,id(latoblack), WHITE, "PRS: %.0f hPA", id(office_pressure).state);
|
||||
# it.graph(10, 40, id(office_pressure_graph));
|
||||
# } else {
|
||||
# it.printf(0,0,id(latoblack), WHITE, "PRESSURE");
|
||||
# it.printf(80, 65, id(lato), WHITE, "LOADING...");
|
||||
# }
|
||||
- id: show_nettopower_graph
|
||||
lambda: |-
|
||||
if (id(nettopower).has_state()) {
|
||||
it.printf(0,0,id(latoblack), WHITE, "power: %.2f Kwh", id(nettopower).state);
|
||||
it.graph(10, 40, id(power_graph));
|
||||
} else {
|
||||
it.printf(0,0,id(latoblack), WHITE, "PRESSURE");
|
||||
it.printf(80, 65, id(lato), WHITE, "LOADING...");
|
||||
}
|
||||
# - id: show_office_light_sensor_graph
|
||||
# lambda: |-
|
||||
# if (id(office_light_sensor).has_state()) {
|
||||
|
||||
39
esphome/cfg_experimental/ep1-woonkamer.yaml
Executable file
39
esphome/cfg_experimental/ep1-woonkamer.yaml
Executable file
@@ -0,0 +1,39 @@
|
||||
substitutions:
|
||||
name: ${device_name}
|
||||
device_name: "ep1_woonkamer"
|
||||
location: "woonkamer"
|
||||
comment: "esp32, mmwave, pir"
|
||||
friendly_name: "ep1_woonkamer"
|
||||
project_name: "Everything Smart Technology.Everything Presence One"
|
||||
project_version: "1.1.3"
|
||||
temperature_offset: "-3"
|
||||
humidity_offset: "5"
|
||||
temperature_update_interval: "60s"
|
||||
illuminance_update_interval: "30s"
|
||||
pir_delay_off: "10s"
|
||||
occupancy_delay_off: "15s"
|
||||
hidden_ssid: "false"
|
||||
factory_reset_disabled: "true"
|
||||
uart_target_output_disabled: "true"
|
||||
uart_presence_output_disabled: "true"
|
||||
api_password: !secret ep1_woonkamer_api
|
||||
ota_password: !secret ota_password
|
||||
wifi_ssid: !secret wifi_ssid
|
||||
wifi_password: !secret wifi_password
|
||||
gateway: !secret ip_gateway
|
||||
subnet: !secret ip_subnet
|
||||
ip: !secret ep1_woonkamer_ip
|
||||
pin_sda: GPIO26
|
||||
pin_scl: GPIO25
|
||||
pin_status: GPIO32
|
||||
|
||||
packages:
|
||||
board: !include boards/esp32_wroom_arduino.yaml
|
||||
device_base: !include common/common.yaml
|
||||
connection: !include common/wifi.yaml
|
||||
logger: !include templates/logger.yaml
|
||||
i2c: !include interfaces/i2c_a.yaml
|
||||
sensor_base: !include sensors/sen0395_base.yaml
|
||||
sensor: !include sensors/sen0395.yaml
|
||||
|
||||
#improv_serial:
|
||||
@@ -33,8 +33,8 @@ substitutions:
|
||||
pin_encode_a: GPIO02
|
||||
pin_encode_b: GPIO01
|
||||
pin_encode_btn: GPIO00
|
||||
pin_sda: GPIO44
|
||||
pin_scl: GPIO43
|
||||
pin_sda: GPIO18
|
||||
pin_scl: GPIO8
|
||||
pin_lcd_bl: GPIO15
|
||||
pin_lcd_dc: GPIO13
|
||||
pin_lcd_cs: GPIO10
|
||||
@@ -51,15 +51,12 @@ packages:
|
||||
connection: !include common/wifi.yaml
|
||||
logger: !include templates/logger.yaml
|
||||
backlight: !include templates/backlight.yaml
|
||||
#i2c: !include interfaces/i2c_a.yaml
|
||||
#lightsens: !include sensors/light_tsl2591.yaml
|
||||
i2c: !include interfaces/i2c_a.yaml
|
||||
encoder: !include sensors/encoder.yaml
|
||||
|
||||
esphome:
|
||||
name: ${device_name}
|
||||
platformio_options:
|
||||
# build_flags: |-
|
||||
# -DARDUINO_USB_CDC_ON_BOOT=1 -DLV_CONF_INCLUDE_SIMPLE
|
||||
board_build.mcu: esp32s3
|
||||
board_build.name: "LilyGO T-Embed ESP32-S3"
|
||||
board_build.upload.flash_size: "16MB"
|
||||
@@ -68,10 +65,10 @@ esphome:
|
||||
on_boot:
|
||||
priority: 800
|
||||
then:
|
||||
# - lambda: |-
|
||||
# id(disp).enable();
|
||||
# id(disp).transfer_byte(0x11);
|
||||
# id(disp).disable();
|
||||
- lambda: |-
|
||||
id(disp).enable();
|
||||
id(disp).transfer_byte(0x11);
|
||||
id(disp).disable();
|
||||
- switch.turn_on: power_on
|
||||
|
||||
button:
|
||||
@@ -107,9 +104,9 @@ switch:
|
||||
id: power_on
|
||||
|
||||
|
||||
# time:
|
||||
# - platform: homeassistant
|
||||
# id: home_time
|
||||
time:
|
||||
- platform: homeassistant
|
||||
id: home_time
|
||||
|
||||
voice_assistant:
|
||||
id: va
|
||||
@@ -132,47 +129,59 @@ micro_wake_word:
|
||||
model: okay_nabu
|
||||
|
||||
|
||||
spi:
|
||||
id: ledbus
|
||||
mosi_pin: ${pin_led_data}
|
||||
clk_pin: ${pin_led_clk}
|
||||
|
||||
light:
|
||||
- platform: spi_led_strip
|
||||
num_leds: 30
|
||||
spi_id: "ledbus"
|
||||
color_correct: [80%, 60%, 100%]
|
||||
id: rgb_led
|
||||
name: "RGB LED Strip"
|
||||
data_rate: 1MHz
|
||||
|
||||
# font:
|
||||
# - file: "gfonts://Roboto"
|
||||
# id: roboto
|
||||
# size: 96
|
||||
|
||||
# spi:
|
||||
# - id: spi_display
|
||||
# clk_pin: ${pin_lcd_clk}
|
||||
# mosi_pin: ${pin_lcd_mosi}
|
||||
# id: ledbus
|
||||
# mosi_pin: ${pin_led_data}
|
||||
# clk_pin: ${pin_led_clk}
|
||||
|
||||
# display:
|
||||
# - platform: st7789v
|
||||
# model: CUSTOM
|
||||
# eightbitcolor: False
|
||||
# rotation: 270
|
||||
# width: 170
|
||||
# height: 320
|
||||
# offset_width: 0
|
||||
# offset_height: 35
|
||||
# #backlight_pin: ${pin_lcd_bl}
|
||||
# cs_pin: ${pin_lcd_cs}
|
||||
# dc_pin: ${pin_lcd_dc}
|
||||
# reset_pin: ${pin_lcd_res}
|
||||
# update_interval: 5s
|
||||
# id: disp
|
||||
# lambda: |-
|
||||
# it.strftime(10, 20, id(roboto), "%H:%M", id(home_time).now());
|
||||
external_components:
|
||||
# - source:
|
||||
# type: local
|
||||
# path: components
|
||||
- source: github://rpatel3001/esphome@es7210
|
||||
components: [ es7210 ]
|
||||
|
||||
|
||||
# light:
|
||||
# - platform: spi_led_strip
|
||||
# num_leds: 30
|
||||
# spi_id: "ledbus"
|
||||
# color_correct: [80%, 60%, 100%]
|
||||
# id: rgb_led
|
||||
# name: "RGB LED Strip"
|
||||
# data_rate: 1MHz
|
||||
|
||||
font:
|
||||
- file: "gfonts://Roboto"
|
||||
id: roboto
|
||||
size: 96
|
||||
|
||||
spi:
|
||||
- id: spi_display
|
||||
clk_pin: ${pin_lcd_clk}
|
||||
mosi_pin: ${pin_lcd_mosi}
|
||||
|
||||
display:
|
||||
- platform: ili9xxx
|
||||
model: st7789V
|
||||
dimensions:
|
||||
height: 170
|
||||
width: 320
|
||||
offset_height: 35
|
||||
offset_width: 0
|
||||
transform:
|
||||
swap_xy: true
|
||||
mirror_x: false
|
||||
mirror_y: true
|
||||
color_order: bgr
|
||||
data_rate: 80MHz
|
||||
cs_pin: ${pin_lcd_cs}
|
||||
dc_pin: ${pin_lcd_dc}
|
||||
reset_pin: ${pin_lcd_res}
|
||||
update_interval: 5s
|
||||
id: disp
|
||||
lambda: |-
|
||||
it.strftime(10, 20, id(roboto), "%H:%M", id(home_time).now());
|
||||
//it.line(0, 0, 50, 50);
|
||||
|
||||
|
||||
76
esphome/cfg_experimental/tuya-plug-001.yaml
Normal file
76
esphome/cfg_experimental/tuya-plug-001.yaml
Normal file
@@ -0,0 +1,76 @@
|
||||
|
||||
substitutions:
|
||||
device_name: "tuyaplug001"
|
||||
friendly_name: "tuya plug 001"
|
||||
comment: "eps-02S, tuya-hack"
|
||||
location: "zolder"
|
||||
api_password: !secret tuya_plug_api
|
||||
ota_password: !secret ota_password
|
||||
wifi_ssid: !secret wifi_ssid
|
||||
wifi_password: !secret wifi_password
|
||||
gateway: !secret ip_gateway
|
||||
subnet: !secret ip_subnet
|
||||
ip: !secret tuya_plug_001_ip
|
||||
pin_relay: GPIO14
|
||||
pin_button: GPIO1
|
||||
pin_status: GPIO13
|
||||
pin_cf: GPIO05
|
||||
pin_cf1: GPIO04
|
||||
pin_sel: GPIO12
|
||||
|
||||
|
||||
|
||||
packages:
|
||||
board: !include boards/esp01.yaml
|
||||
connection: !include common/wifi.yaml
|
||||
device_base: !include common/common.yaml
|
||||
status: !include templates/status.yaml
|
||||
logger: !include templates/nologger.yaml
|
||||
|
||||
|
||||
binary_sensor:
|
||||
- platform: gpio
|
||||
pin:
|
||||
number: ${pin_button}
|
||||
mode:
|
||||
input: true
|
||||
pullup: true
|
||||
inverted: true
|
||||
name: "Button"
|
||||
on_press:
|
||||
- switch.toggle: relay
|
||||
|
||||
switch:
|
||||
# the power relay
|
||||
- platform: gpio
|
||||
id: relay
|
||||
pin: ${pin_relay}
|
||||
name: '${device_name}'
|
||||
restore_mode: RESTORE_DEFAULT_ON # attempt to restore state on start and defaults to OFF if failed
|
||||
icon: mdi:power-socket-de
|
||||
|
||||
sensor:
|
||||
- platform: hlw8012
|
||||
model: BL0937 # note that the model must be specified to use special calculation parameters
|
||||
current_resistor: 0.001 # adjust it according to the actual resistor value on board
|
||||
voltage_divider: 2012 # (2008.1K)/998 = 2004, adjust it according to the actual resistor values on board
|
||||
sel_pin:
|
||||
number: ${pin_sel}
|
||||
inverted: true # the logic of BL0937 is opposite from HLW8012
|
||||
cf_pin: ${pin_cf}
|
||||
cf1_pin: ${pin_cf1}
|
||||
current:
|
||||
name: '${device_name} Current'
|
||||
voltage:
|
||||
name: '${device_name} Voltage'
|
||||
power:
|
||||
name: '${device_name} Power'
|
||||
energy:
|
||||
name: '${device_name} Energy'
|
||||
# convert to kWh
|
||||
filters:
|
||||
- multiply: 0.001
|
||||
unit_of_measurement: 'kWh'
|
||||
accuracy_decimals: 4
|
||||
update_interval: 10s
|
||||
change_mode_every: 3
|
||||
2
esphome/plant-sensor-2.yaml → esphome/cfg_offline/plant-sensor-2.yaml
Executable file → Normal file
2
esphome/plant-sensor-2.yaml → esphome/cfg_offline/plant-sensor-2.yaml
Executable file → Normal file
@@ -42,7 +42,7 @@ packages:
|
||||
connection: !include common/wifi.yaml
|
||||
i2c: !include interfaces/i2c_a.yaml
|
||||
logger: !include templates/nologger.yaml
|
||||
deepsleep: !include common/deepsleep_wakepin.yaml
|
||||
#deepsleep: !include common/deepsleep_wakepin.yaml
|
||||
time: !include templates/time.yaml
|
||||
#sensors
|
||||
plantsensors: !include sensors/plantsensors.yaml
|
||||
@@ -78,6 +78,6 @@ zeroconf:
|
||||
txt:
|
||||
version: 1.0
|
||||
name: TubesZB
|
||||
radio_type: ezsp
|
||||
radio_type: ember
|
||||
baud_rate: 115200
|
||||
data_flow_control: software
|
||||
1178
esphome/color/COLOR_CSS
Normal file
1178
esphome/color/COLOR_CSS
Normal file
File diff suppressed because it is too large
Load Diff
10
esphome/color/COLOR_CSS_ALICEBLUE
Normal file
10
esphome/color/COLOR_CSS_ALICEBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f0f8ff
|
||||
# 240,248,255
|
||||
- id: COLOR_CSS_ALICEBLUE
|
||||
red: 0.9412
|
||||
green: 0.9725
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_ANTIQUEWHITE
Normal file
10
esphome/color/COLOR_CSS_ANTIQUEWHITE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #faebd7
|
||||
# 250,235,215
|
||||
- id: COLOR_CSS_ANTIQUEWHITE
|
||||
red: 0.9804
|
||||
green: 0.9216
|
||||
blue: 0.8431
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_AQUA
Normal file
10
esphome/color/COLOR_CSS_AQUA
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00ffff
|
||||
# 0,255,255
|
||||
- id: COLOR_CSS_AQUA
|
||||
red: 0.0000
|
||||
green: 1.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_AQUAMARINE
Normal file
10
esphome/color/COLOR_CSS_AQUAMARINE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #7fffd4
|
||||
# 127,255,212
|
||||
- id: COLOR_CSS_AQUAMARINE
|
||||
red: 0.4980
|
||||
green: 1.0000
|
||||
blue: 0.8314
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_AZURE
Normal file
10
esphome/color/COLOR_CSS_AZURE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f0ffff
|
||||
# 240,255,255
|
||||
- id: COLOR_CSS_AZURE
|
||||
red: 0.9412
|
||||
green: 1.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BEIGE
Normal file
10
esphome/color/COLOR_CSS_BEIGE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f5f5dc
|
||||
# 245,245,220
|
||||
- id: COLOR_CSS_BEIGE
|
||||
red: 0.9608
|
||||
green: 0.9608
|
||||
blue: 0.8627
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BISQUE
Normal file
10
esphome/color/COLOR_CSS_BISQUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffe4c4
|
||||
# 255,228,196
|
||||
- id: COLOR_CSS_BISQUE
|
||||
red: 1.0000
|
||||
green: 0.8941
|
||||
blue: 0.7686
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BLACK
Normal file
10
esphome/color/COLOR_CSS_BLACK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #000000
|
||||
# 0,0,0
|
||||
- id: COLOR_CSS_BLACK
|
||||
red: 0.0000
|
||||
green: 0.0000
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BLANCHEDALMOND
Normal file
10
esphome/color/COLOR_CSS_BLANCHEDALMOND
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffebcd
|
||||
# 255,235,205
|
||||
- id: COLOR_CSS_BLANCHEDALMOND
|
||||
red: 1.0000
|
||||
green: 0.9216
|
||||
blue: 0.8039
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BLUE
Normal file
10
esphome/color/COLOR_CSS_BLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #0000ff
|
||||
# 0,0,255
|
||||
- id: COLOR_CSS_BLUE
|
||||
red: 0.0000
|
||||
green: 0.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BLUEVIOLET
Normal file
10
esphome/color/COLOR_CSS_BLUEVIOLET
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #8a2be2
|
||||
# 138,43,226
|
||||
- id: COLOR_CSS_BLUEVIOLET
|
||||
red: 0.5412
|
||||
green: 0.1686
|
||||
blue: 0.8863
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BROWN
Normal file
10
esphome/color/COLOR_CSS_BROWN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #a52a2a
|
||||
# 165,42,42
|
||||
- id: COLOR_CSS_BROWN
|
||||
red: 0.6471
|
||||
green: 0.1647
|
||||
blue: 0.1647
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_BURLYWOOD
Normal file
10
esphome/color/COLOR_CSS_BURLYWOOD
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #deb887
|
||||
# 222,184,135
|
||||
- id: COLOR_CSS_BURLYWOOD
|
||||
red: 0.8706
|
||||
green: 0.7216
|
||||
blue: 0.5294
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CADETBLUE
Normal file
10
esphome/color/COLOR_CSS_CADETBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #5f9ea0
|
||||
# 95,158,160
|
||||
- id: COLOR_CSS_CADETBLUE
|
||||
red: 0.3725
|
||||
green: 0.6196
|
||||
blue: 0.6275
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CHARTREUSE
Normal file
10
esphome/color/COLOR_CSS_CHARTREUSE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #7fff00
|
||||
# 127,255,0
|
||||
- id: COLOR_CSS_CHARTREUSE
|
||||
red: 0.4980
|
||||
green: 1.0000
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CHOCOLATE
Normal file
10
esphome/color/COLOR_CSS_CHOCOLATE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #d2691e
|
||||
# 210,105,30
|
||||
- id: COLOR_CSS_CHOCOLATE
|
||||
red: 0.8235
|
||||
green: 0.4118
|
||||
blue: 0.1176
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CORAL
Normal file
10
esphome/color/COLOR_CSS_CORAL
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff7f50
|
||||
# 255,127,80
|
||||
- id: COLOR_CSS_CORAL
|
||||
red: 1.0000
|
||||
green: 0.4980
|
||||
blue: 0.3137
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CORNFLOWERBLUE
Normal file
10
esphome/color/COLOR_CSS_CORNFLOWERBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #6495ed
|
||||
# 100,149,237
|
||||
- id: COLOR_CSS_CORNFLOWERBLUE
|
||||
red: 0.3922
|
||||
green: 0.5843
|
||||
blue: 0.9294
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CORNSILK
Normal file
10
esphome/color/COLOR_CSS_CORNSILK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fff8dc
|
||||
# 255,248,220
|
||||
- id: COLOR_CSS_CORNSILK
|
||||
red: 1.0000
|
||||
green: 0.9725
|
||||
blue: 0.8627
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CRIMSON
Normal file
10
esphome/color/COLOR_CSS_CRIMSON
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #dc143c
|
||||
# 220,20,60
|
||||
- id: COLOR_CSS_CRIMSON
|
||||
red: 0.8627
|
||||
green: 0.0784
|
||||
blue: 0.2353
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_CYAN
Normal file
10
esphome/color/COLOR_CSS_CYAN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00ffff
|
||||
# 0,255,255
|
||||
- id: COLOR_CSS_CYAN
|
||||
red: 0.0000
|
||||
green: 1.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKBLUE
Normal file
10
esphome/color/COLOR_CSS_DARKBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00008b
|
||||
# 0,0,139
|
||||
- id: COLOR_CSS_DARKBLUE
|
||||
red: 0.0000
|
||||
green: 0.0000
|
||||
blue: 0.5451
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKCYAN
Normal file
10
esphome/color/COLOR_CSS_DARKCYAN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #008b8b
|
||||
# 0,139,139
|
||||
- id: COLOR_CSS_DARKCYAN
|
||||
red: 0.0000
|
||||
green: 0.5451
|
||||
blue: 0.5451
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKGOLDENROD
Normal file
10
esphome/color/COLOR_CSS_DARKGOLDENROD
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #b8860b
|
||||
# 184,134,11
|
||||
- id: COLOR_CSS_DARKGOLDENROD
|
||||
red: 0.7216
|
||||
green: 0.5255
|
||||
blue: 0.0431
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKGRAY
Normal file
10
esphome/color/COLOR_CSS_DARKGRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #a9a9a9
|
||||
# 169,169,169
|
||||
- id: COLOR_CSS_DARKGRAY
|
||||
red: 0.6627
|
||||
green: 0.6627
|
||||
blue: 0.6627
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKGREEN
Normal file
10
esphome/color/COLOR_CSS_DARKGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #006400
|
||||
# 0,100,0
|
||||
- id: COLOR_CSS_DARKGREEN
|
||||
red: 0.0000
|
||||
green: 0.3922
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKGREY
Normal file
10
esphome/color/COLOR_CSS_DARKGREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #a9a9a9
|
||||
# 169,169,169
|
||||
- id: COLOR_CSS_DARKGREY
|
||||
red: 0.6627
|
||||
green: 0.6627
|
||||
blue: 0.6627
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKKHAKI
Normal file
10
esphome/color/COLOR_CSS_DARKKHAKI
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #bdb76b
|
||||
# 189,183,107
|
||||
- id: COLOR_CSS_DARKKHAKI
|
||||
red: 0.7412
|
||||
green: 0.7176
|
||||
blue: 0.4196
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKMAGENTA
Normal file
10
esphome/color/COLOR_CSS_DARKMAGENTA
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #8b008b
|
||||
# 139,0,139
|
||||
- id: COLOR_CSS_DARKMAGENTA
|
||||
red: 0.5451
|
||||
green: 0.0000
|
||||
blue: 0.5451
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKOLIVEGREEN
Normal file
10
esphome/color/COLOR_CSS_DARKOLIVEGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #556b2f
|
||||
# 85,107,47
|
||||
- id: COLOR_CSS_DARKOLIVEGREEN
|
||||
red: 0.3333
|
||||
green: 0.4196
|
||||
blue: 0.1843
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKORANGE
Normal file
10
esphome/color/COLOR_CSS_DARKORANGE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff8c00
|
||||
# 255,140,0
|
||||
- id: COLOR_CSS_DARKORANGE
|
||||
red: 1.0000
|
||||
green: 0.5490
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKORCHID
Normal file
10
esphome/color/COLOR_CSS_DARKORCHID
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #9932cc
|
||||
# 153,50,204
|
||||
- id: COLOR_CSS_DARKORCHID
|
||||
red: 0.6000
|
||||
green: 0.1961
|
||||
blue: 0.8000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKRED
Normal file
10
esphome/color/COLOR_CSS_DARKRED
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #8b0000
|
||||
# 139,0,0
|
||||
- id: COLOR_CSS_DARKRED
|
||||
red: 0.5451
|
||||
green: 0.0000
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKSALMON
Normal file
10
esphome/color/COLOR_CSS_DARKSALMON
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #e9967a
|
||||
# 233,150,122
|
||||
- id: COLOR_CSS_DARKSALMON
|
||||
red: 0.9137
|
||||
green: 0.5882
|
||||
blue: 0.4784
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKSEAGREEN
Normal file
10
esphome/color/COLOR_CSS_DARKSEAGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #8fbc8f
|
||||
# 143,188,143
|
||||
- id: COLOR_CSS_DARKSEAGREEN
|
||||
red: 0.5608
|
||||
green: 0.7373
|
||||
blue: 0.5608
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKSLATEBLUE
Normal file
10
esphome/color/COLOR_CSS_DARKSLATEBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #483d8b
|
||||
# 72,61,139
|
||||
- id: COLOR_CSS_DARKSLATEBLUE
|
||||
red: 0.2824
|
||||
green: 0.2392
|
||||
blue: 0.5451
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKSLATEGRAY
Normal file
10
esphome/color/COLOR_CSS_DARKSLATEGRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #2f4f4f
|
||||
# 47,79,79
|
||||
- id: COLOR_CSS_DARKSLATEGRAY
|
||||
red: 0.1843
|
||||
green: 0.3098
|
||||
blue: 0.3098
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKSLATEGREY
Normal file
10
esphome/color/COLOR_CSS_DARKSLATEGREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #2f4f4f
|
||||
# 47,79,79
|
||||
- id: COLOR_CSS_DARKSLATEGREY
|
||||
red: 0.1843
|
||||
green: 0.3098
|
||||
blue: 0.3098
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKTURQUOISE
Normal file
10
esphome/color/COLOR_CSS_DARKTURQUOISE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00ced1
|
||||
# 0,206,209
|
||||
- id: COLOR_CSS_DARKTURQUOISE
|
||||
red: 0.0000
|
||||
green: 0.8078
|
||||
blue: 0.8196
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DARKVIOLET
Normal file
10
esphome/color/COLOR_CSS_DARKVIOLET
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #9400d3
|
||||
# 148,0,211
|
||||
- id: COLOR_CSS_DARKVIOLET
|
||||
red: 0.5804
|
||||
green: 0.0000
|
||||
blue: 0.8275
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DEEPPINK
Normal file
10
esphome/color/COLOR_CSS_DEEPPINK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff1493
|
||||
# 255,20,147
|
||||
- id: COLOR_CSS_DEEPPINK
|
||||
red: 1.0000
|
||||
green: 0.0784
|
||||
blue: 0.5765
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DEEPSKYBLUE
Normal file
10
esphome/color/COLOR_CSS_DEEPSKYBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00bfff
|
||||
# 0,191,255
|
||||
- id: COLOR_CSS_DEEPSKYBLUE
|
||||
red: 0.0000
|
||||
green: 0.7490
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DIMGRAY
Normal file
10
esphome/color/COLOR_CSS_DIMGRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #696969
|
||||
# 105,105,105
|
||||
- id: COLOR_CSS_DIMGRAY
|
||||
red: 0.4118
|
||||
green: 0.4118
|
||||
blue: 0.4118
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DIMGREY
Normal file
10
esphome/color/COLOR_CSS_DIMGREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #696969
|
||||
# 105,105,105
|
||||
- id: COLOR_CSS_DIMGREY
|
||||
red: 0.4118
|
||||
green: 0.4118
|
||||
blue: 0.4118
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_DODGERBLUE
Normal file
10
esphome/color/COLOR_CSS_DODGERBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #1e90ff
|
||||
# 30,144,255
|
||||
- id: COLOR_CSS_DODGERBLUE
|
||||
red: 0.1176
|
||||
green: 0.5647
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_FIREBRICK
Normal file
10
esphome/color/COLOR_CSS_FIREBRICK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #b22222
|
||||
# 178,34,34
|
||||
- id: COLOR_CSS_FIREBRICK
|
||||
red: 0.6980
|
||||
green: 0.1333
|
||||
blue: 0.1333
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_FLORALWHITE
Normal file
10
esphome/color/COLOR_CSS_FLORALWHITE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fffaf0
|
||||
# 255,250,240
|
||||
- id: COLOR_CSS_FLORALWHITE
|
||||
red: 1.0000
|
||||
green: 0.9804
|
||||
blue: 0.9412
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_FORESTGREEN
Normal file
10
esphome/color/COLOR_CSS_FORESTGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #228b22
|
||||
# 34,139,34
|
||||
- id: COLOR_CSS_FORESTGREEN
|
||||
red: 0.1333
|
||||
green: 0.5451
|
||||
blue: 0.1333
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_FUCHSIA
Normal file
10
esphome/color/COLOR_CSS_FUCHSIA
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff00ff
|
||||
# 255,0,255
|
||||
- id: COLOR_CSS_FUCHSIA
|
||||
red: 1.0000
|
||||
green: 0.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GAINSBORO
Normal file
10
esphome/color/COLOR_CSS_GAINSBORO
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #dcdcdc
|
||||
# 220,220,220
|
||||
- id: COLOR_CSS_GAINSBORO
|
||||
red: 0.8627
|
||||
green: 0.8627
|
||||
blue: 0.8627
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GHOSTWHITE
Normal file
10
esphome/color/COLOR_CSS_GHOSTWHITE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f8f8ff
|
||||
# 248,248,255
|
||||
- id: COLOR_CSS_GHOSTWHITE
|
||||
red: 0.9725
|
||||
green: 0.9725
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GOLD
Normal file
10
esphome/color/COLOR_CSS_GOLD
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffd700
|
||||
# 255,215,0
|
||||
- id: COLOR_CSS_GOLD
|
||||
red: 1.0000
|
||||
green: 0.8431
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GOLDENROD
Normal file
10
esphome/color/COLOR_CSS_GOLDENROD
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #daa520
|
||||
# 218,165,32
|
||||
- id: COLOR_CSS_GOLDENROD
|
||||
red: 0.8549
|
||||
green: 0.6471
|
||||
blue: 0.1255
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GRAY
Normal file
10
esphome/color/COLOR_CSS_GRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #808080
|
||||
# 128,128,128
|
||||
- id: COLOR_CSS_GRAY
|
||||
red: 0.5020
|
||||
green: 0.5020
|
||||
blue: 0.5020
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GREEN
Normal file
10
esphome/color/COLOR_CSS_GREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #008000
|
||||
# 0,128,0
|
||||
- id: COLOR_CSS_GREEN
|
||||
red: 0.0000
|
||||
green: 0.5020
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GREENYELLOW
Normal file
10
esphome/color/COLOR_CSS_GREENYELLOW
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #adff2f
|
||||
# 173,255,47
|
||||
- id: COLOR_CSS_GREENYELLOW
|
||||
red: 0.6784
|
||||
green: 1.0000
|
||||
blue: 0.1843
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_GREY
Normal file
10
esphome/color/COLOR_CSS_GREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #808080
|
||||
# 128,128,128
|
||||
- id: COLOR_CSS_GREY
|
||||
red: 0.5020
|
||||
green: 0.5020
|
||||
blue: 0.5020
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_HONEYDEW
Normal file
10
esphome/color/COLOR_CSS_HONEYDEW
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f0fff0
|
||||
# 240,255,240
|
||||
- id: COLOR_CSS_HONEYDEW
|
||||
red: 0.9412
|
||||
green: 1.0000
|
||||
blue: 0.9412
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_HOTPINK
Normal file
10
esphome/color/COLOR_CSS_HOTPINK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff69b4
|
||||
# 255,105,180
|
||||
- id: COLOR_CSS_HOTPINK
|
||||
red: 1.0000
|
||||
green: 0.4118
|
||||
blue: 0.7059
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_INDIANRED
Normal file
10
esphome/color/COLOR_CSS_INDIANRED
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #cd5c5c
|
||||
# 205,92,92
|
||||
- id: COLOR_CSS_INDIANRED
|
||||
red: 0.8039
|
||||
green: 0.3608
|
||||
blue: 0.3608
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_INDIGO
Normal file
10
esphome/color/COLOR_CSS_INDIGO
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #4b0082
|
||||
# 75,0,130
|
||||
- id: COLOR_CSS_INDIGO
|
||||
red: 0.2941
|
||||
green: 0.0000
|
||||
blue: 0.5098
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_IVORY
Normal file
10
esphome/color/COLOR_CSS_IVORY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fffff0
|
||||
# 255,255,240
|
||||
- id: COLOR_CSS_IVORY
|
||||
red: 1.0000
|
||||
green: 1.0000
|
||||
blue: 0.9412
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_KHAKI
Normal file
10
esphome/color/COLOR_CSS_KHAKI
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f0e68c
|
||||
# 240,230,140
|
||||
- id: COLOR_CSS_KHAKI
|
||||
red: 0.9412
|
||||
green: 0.9020
|
||||
blue: 0.5490
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LAVENDER
Normal file
10
esphome/color/COLOR_CSS_LAVENDER
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #e6e6fa
|
||||
# 230,230,250
|
||||
- id: COLOR_CSS_LAVENDER
|
||||
red: 0.9020
|
||||
green: 0.9020
|
||||
blue: 0.9804
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LAVENDERBLUSH
Normal file
10
esphome/color/COLOR_CSS_LAVENDERBLUSH
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fff0f5
|
||||
# 255,240,245
|
||||
- id: COLOR_CSS_LAVENDERBLUSH
|
||||
red: 1.0000
|
||||
green: 0.9412
|
||||
blue: 0.9608
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LAWNGREEN
Normal file
10
esphome/color/COLOR_CSS_LAWNGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #7cfc00
|
||||
# 124,252,0
|
||||
- id: COLOR_CSS_LAWNGREEN
|
||||
red: 0.4863
|
||||
green: 0.9882
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LEMONCHIFFON
Normal file
10
esphome/color/COLOR_CSS_LEMONCHIFFON
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fffacd
|
||||
# 255,250,205
|
||||
- id: COLOR_CSS_LEMONCHIFFON
|
||||
red: 1.0000
|
||||
green: 0.9804
|
||||
blue: 0.8039
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTBLUE
Normal file
10
esphome/color/COLOR_CSS_LIGHTBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #add8e6
|
||||
# 173,216,230
|
||||
- id: COLOR_CSS_LIGHTBLUE
|
||||
red: 0.6784
|
||||
green: 0.8471
|
||||
blue: 0.9020
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTCORAL
Normal file
10
esphome/color/COLOR_CSS_LIGHTCORAL
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #f08080
|
||||
# 240,128,128
|
||||
- id: COLOR_CSS_LIGHTCORAL
|
||||
red: 0.9412
|
||||
green: 0.5020
|
||||
blue: 0.5020
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTCYAN
Normal file
10
esphome/color/COLOR_CSS_LIGHTCYAN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #e0ffff
|
||||
# 224,255,255
|
||||
- id: COLOR_CSS_LIGHTCYAN
|
||||
red: 0.8784
|
||||
green: 1.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTGOLDENRODYELLOW
Normal file
10
esphome/color/COLOR_CSS_LIGHTGOLDENRODYELLOW
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #fafad2
|
||||
# 250,250,210
|
||||
- id: COLOR_CSS_LIGHTGOLDENRODYELLOW
|
||||
red: 0.9804
|
||||
green: 0.9804
|
||||
blue: 0.8235
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTGRAY
Normal file
10
esphome/color/COLOR_CSS_LIGHTGRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #d3d3d3
|
||||
# 211,211,211
|
||||
- id: COLOR_CSS_LIGHTGRAY
|
||||
red: 0.8275
|
||||
green: 0.8275
|
||||
blue: 0.8275
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTGREEN
Normal file
10
esphome/color/COLOR_CSS_LIGHTGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #90ee90
|
||||
# 144,238,144
|
||||
- id: COLOR_CSS_LIGHTGREEN
|
||||
red: 0.5647
|
||||
green: 0.9333
|
||||
blue: 0.5647
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTGREY
Normal file
10
esphome/color/COLOR_CSS_LIGHTGREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #d3d3d3
|
||||
# 211,211,211
|
||||
- id: COLOR_CSS_LIGHTGREY
|
||||
red: 0.8275
|
||||
green: 0.8275
|
||||
blue: 0.8275
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTPINK
Normal file
10
esphome/color/COLOR_CSS_LIGHTPINK
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffb6c1
|
||||
# 255,182,193
|
||||
- id: COLOR_CSS_LIGHTPINK
|
||||
red: 1.0000
|
||||
green: 0.7137
|
||||
blue: 0.7569
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSALMON
Normal file
10
esphome/color/COLOR_CSS_LIGHTSALMON
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffa07a
|
||||
# 255,160,122
|
||||
- id: COLOR_CSS_LIGHTSALMON
|
||||
red: 1.0000
|
||||
green: 0.6275
|
||||
blue: 0.4784
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSEAGREEN
Normal file
10
esphome/color/COLOR_CSS_LIGHTSEAGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #20b2aa
|
||||
# 32,178,170
|
||||
- id: COLOR_CSS_LIGHTSEAGREEN
|
||||
red: 0.1255
|
||||
green: 0.6980
|
||||
blue: 0.6667
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSKYBLUE
Normal file
10
esphome/color/COLOR_CSS_LIGHTSKYBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #87cefa
|
||||
# 135,206,250
|
||||
- id: COLOR_CSS_LIGHTSKYBLUE
|
||||
red: 0.5294
|
||||
green: 0.8078
|
||||
blue: 0.9804
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSLATEGRAY
Normal file
10
esphome/color/COLOR_CSS_LIGHTSLATEGRAY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #778899
|
||||
# 119,136,153
|
||||
- id: COLOR_CSS_LIGHTSLATEGRAY
|
||||
red: 0.4667
|
||||
green: 0.5333
|
||||
blue: 0.6000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSLATEGREY
Normal file
10
esphome/color/COLOR_CSS_LIGHTSLATEGREY
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #778899
|
||||
# 119,136,153
|
||||
- id: COLOR_CSS_LIGHTSLATEGREY
|
||||
red: 0.4667
|
||||
green: 0.5333
|
||||
blue: 0.6000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTSTEELBLUE
Normal file
10
esphome/color/COLOR_CSS_LIGHTSTEELBLUE
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #b0c4de
|
||||
# 176,196,222
|
||||
- id: COLOR_CSS_LIGHTSTEELBLUE
|
||||
red: 0.6902
|
||||
green: 0.7686
|
||||
blue: 0.8706
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIGHTYELLOW
Normal file
10
esphome/color/COLOR_CSS_LIGHTYELLOW
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ffffe0
|
||||
# 255,255,224
|
||||
- id: COLOR_CSS_LIGHTYELLOW
|
||||
red: 1.0000
|
||||
green: 1.0000
|
||||
blue: 0.8784
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIME
Normal file
10
esphome/color/COLOR_CSS_LIME
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #00ff00
|
||||
# 0,255,0
|
||||
- id: COLOR_CSS_LIME
|
||||
red: 0.0000
|
||||
green: 1.0000
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LIMEGREEN
Normal file
10
esphome/color/COLOR_CSS_LIMEGREEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #32cd32
|
||||
# 50,205,50
|
||||
- id: COLOR_CSS_LIMEGREEN
|
||||
red: 0.1961
|
||||
green: 0.8039
|
||||
blue: 0.1961
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_LINEN
Normal file
10
esphome/color/COLOR_CSS_LINEN
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #faf0e6
|
||||
# 250,240,230
|
||||
- id: COLOR_CSS_LINEN
|
||||
red: 0.9804
|
||||
green: 0.9412
|
||||
blue: 0.9020
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_MAGENTA
Normal file
10
esphome/color/COLOR_CSS_MAGENTA
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #ff00ff
|
||||
# 255,0,255
|
||||
- id: COLOR_CSS_MAGENTA
|
||||
red: 1.0000
|
||||
green: 0.0000
|
||||
blue: 1.0000
|
||||
white: 0.0000
|
||||
10
esphome/color/COLOR_CSS_MAROON
Normal file
10
esphome/color/COLOR_CSS_MAROON
Normal file
@@ -0,0 +1,10 @@
|
||||
color:
|
||||
# name and values from https://www.w3.org/wiki/CSS/Properties/color/keywords
|
||||
|
||||
# #800000
|
||||
# 128,0,0
|
||||
- id: COLOR_CSS_MAROON
|
||||
red: 0.5020
|
||||
green: 0.0000
|
||||
blue: 0.0000
|
||||
white: 0.0000
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user