1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-11 22:33:49 +01:00

[const] Move CONF_GAIN_FACTOR to const.py (#8646)

This commit is contained in:
Jesse Hills
2025-04-29 11:35:38 +12:00
committed by GitHub
parent 629481a526
commit a31a5e74bd
3 changed files with 3 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ from esphome.components import i2c, sensirion_common, sensor
import esphome.config_validation as cv
from esphome.const import (
CONF_COMPENSATION,
CONF_GAIN_FACTOR,
CONF_ID,
CONF_STORE_BASELINE,
CONF_TEMPERATURE_SOURCE,
@@ -24,7 +25,6 @@ SGP4xComponent = sgp4x_ns.class_(
)
CONF_ALGORITHM_TUNING = "algorithm_tuning"
CONF_GAIN_FACTOR = "gain_factor"
CONF_GATING_MAX_DURATION_MINUTES = "gating_max_duration_minutes"
CONF_HUMIDITY_SOURCE = "humidity_source"
CONF_INDEX_OFFSET = "index_offset"