mirror of
https://github.com/esphome/esphome.git
synced 2024-12-18 11:34:54 +01:00
[const] Add RMT CONF variables to const.py (#7953)
Co-authored-by: Jonathan Swoboda <jonathan.swoboda>
This commit is contained in:
parent
1656ced351
commit
4e1ff31342
2 changed files with 10 additions and 7 deletions
|
@ -1,24 +1,23 @@
|
||||||
import esphome.codegen as cg
|
|
||||||
import esphome.config_validation as cv
|
|
||||||
from esphome import pins
|
from esphome import pins
|
||||||
from esphome.components import remote_base, esp32_rmt
|
import esphome.codegen as cg
|
||||||
|
from esphome.components import esp32_rmt, remote_base
|
||||||
|
import esphome.config_validation as cv
|
||||||
from esphome.const import (
|
from esphome.const import (
|
||||||
CONF_BUFFER_SIZE,
|
CONF_BUFFER_SIZE,
|
||||||
|
CONF_CLOCK_DIVIDER,
|
||||||
CONF_DUMP,
|
CONF_DUMP,
|
||||||
CONF_FILTER,
|
CONF_FILTER,
|
||||||
CONF_ID,
|
CONF_ID,
|
||||||
CONF_IDLE,
|
CONF_IDLE,
|
||||||
|
CONF_MEMORY_BLOCKS,
|
||||||
CONF_PIN,
|
CONF_PIN,
|
||||||
|
CONF_RMT_CHANNEL,
|
||||||
CONF_TOLERANCE,
|
CONF_TOLERANCE,
|
||||||
CONF_TYPE,
|
CONF_TYPE,
|
||||||
CONF_MEMORY_BLOCKS,
|
|
||||||
CONF_RMT_CHANNEL,
|
|
||||||
CONF_VALUE,
|
CONF_VALUE,
|
||||||
)
|
)
|
||||||
from esphome.core import CORE, TimePeriod
|
from esphome.core import CORE, TimePeriod
|
||||||
|
|
||||||
CONF_CLOCK_DIVIDER = "clock_divider"
|
|
||||||
|
|
||||||
AUTO_LOAD = ["remote_base"]
|
AUTO_LOAD = ["remote_base"]
|
||||||
remote_receiver_ns = cg.esphome_ns.namespace("remote_receiver")
|
remote_receiver_ns = cg.esphome_ns.namespace("remote_receiver")
|
||||||
remote_base_ns = cg.esphome_ns.namespace("remote_base")
|
remote_base_ns = cg.esphome_ns.namespace("remote_base")
|
||||||
|
|
|
@ -131,7 +131,9 @@ CONF_CLIENT_CERTIFICATE = "client_certificate"
|
||||||
CONF_CLIENT_CERTIFICATE_KEY = "client_certificate_key"
|
CONF_CLIENT_CERTIFICATE_KEY = "client_certificate_key"
|
||||||
CONF_CLIENT_ID = "client_id"
|
CONF_CLIENT_ID = "client_id"
|
||||||
CONF_CLK_PIN = "clk_pin"
|
CONF_CLK_PIN = "clk_pin"
|
||||||
|
CONF_CLOCK_DIVIDER = "clock_divider"
|
||||||
CONF_CLOCK_PIN = "clock_pin"
|
CONF_CLOCK_PIN = "clock_pin"
|
||||||
|
CONF_CLOCK_RESOLUTION = "clock_resolution"
|
||||||
CONF_CLOSE_ACTION = "close_action"
|
CONF_CLOSE_ACTION = "close_action"
|
||||||
CONF_CLOSE_DURATION = "close_duration"
|
CONF_CLOSE_DURATION = "close_duration"
|
||||||
CONF_CLOSE_ENDSTOP = "close_endstop"
|
CONF_CLOSE_ENDSTOP = "close_endstop"
|
||||||
|
@ -739,6 +741,7 @@ CONF_RGB_ORDER = "rgb_order"
|
||||||
CONF_RGBW = "rgbw"
|
CONF_RGBW = "rgbw"
|
||||||
CONF_RISING_EDGE = "rising_edge"
|
CONF_RISING_EDGE = "rising_edge"
|
||||||
CONF_RMT_CHANNEL = "rmt_channel"
|
CONF_RMT_CHANNEL = "rmt_channel"
|
||||||
|
CONF_RMT_SYMBOLS = "rmt_symbols"
|
||||||
CONF_ROTATION = "rotation"
|
CONF_ROTATION = "rotation"
|
||||||
CONF_ROW = "row"
|
CONF_ROW = "row"
|
||||||
CONF_RS_PIN = "rs_pin"
|
CONF_RS_PIN = "rs_pin"
|
||||||
|
@ -918,6 +921,7 @@ CONF_UPDATE_ON_BOOT = "update_on_boot"
|
||||||
CONF_URL = "url"
|
CONF_URL = "url"
|
||||||
CONF_USE_ABBREVIATIONS = "use_abbreviations"
|
CONF_USE_ABBREVIATIONS = "use_abbreviations"
|
||||||
CONF_USE_ADDRESS = "use_address"
|
CONF_USE_ADDRESS = "use_address"
|
||||||
|
CONF_USE_DMA = "use_dma"
|
||||||
CONF_USE_FAHRENHEIT = "use_fahrenheit"
|
CONF_USE_FAHRENHEIT = "use_fahrenheit"
|
||||||
CONF_USERNAME = "username"
|
CONF_USERNAME = "username"
|
||||||
CONF_UUID = "uuid"
|
CONF_UUID = "uuid"
|
||||||
|
|
Loading…
Reference in a new issue