mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
pulse_counter_ulp: Remove filter configuration
This commit is contained in:
parent
5f98bf4808
commit
3059e65d13
1 changed files with 0 additions and 5 deletions
|
@ -9,7 +9,6 @@ from esphome.const import (
|
|||
CONF_COUNT_MODE,
|
||||
CONF_FALLING_EDGE,
|
||||
CONF_ID,
|
||||
CONF_INTERNAL_FILTER,
|
||||
CONF_PIN,
|
||||
CONF_RISING_EDGE,
|
||||
CONF_NUMBER,
|
||||
|
@ -91,9 +90,6 @@ CONFIG_SCHEMA = cv.All(
|
|||
),
|
||||
validate_count_mode,
|
||||
),
|
||||
cv.Optional(
|
||||
CONF_INTERNAL_FILTER, default="13us"
|
||||
): cv.positive_time_period_microseconds,
|
||||
cv.Optional(CONF_TOTAL): sensor.sensor_schema(
|
||||
unit_of_measurement=UNIT_PULSES,
|
||||
icon=ICON_PULSE,
|
||||
|
@ -135,7 +131,6 @@ async def to_code(config):
|
|||
count = config[CONF_COUNT_MODE]
|
||||
cg.add(var.set_rising_edge_mode(count[CONF_RISING_EDGE]))
|
||||
cg.add(var.set_falling_edge_mode(count[CONF_FALLING_EDGE]))
|
||||
cg.add(var.set_filter_us(config[CONF_INTERNAL_FILTER]))
|
||||
|
||||
if CONF_TIME_ID in config:
|
||||
cg.add_define("CONF_USE_TIME", True)
|
||||
|
|
Loading…
Reference in a new issue