mirror of
https://github.com/esphome/esphome.git
synced 2025-09-17 10:42:21 +01:00
197 lines
6.2 KiB
Python
197 lines
6.2 KiB
Python
import logging
|
|
|
|
import esphome.codegen as cg
|
|
from esphome.components import sensor, voltage_sampler
|
|
from esphome.components.esp32 import get_esp32_variant
|
|
from esphome.components.nrf52.const import AIN_TO_GPIO, EXTRA_ADC
|
|
from esphome.components.zephyr import (
|
|
zephyr_add_overlay,
|
|
zephyr_add_prj_conf,
|
|
zephyr_add_user,
|
|
)
|
|
from esphome.config_helpers import filter_source_files_from_platform
|
|
import esphome.config_validation as cv
|
|
from esphome.const import (
|
|
CONF_ATTENUATION,
|
|
CONF_ID,
|
|
CONF_NUMBER,
|
|
CONF_PIN,
|
|
CONF_RAW,
|
|
DEVICE_CLASS_VOLTAGE,
|
|
PLATFORM_NRF52,
|
|
STATE_CLASS_MEASUREMENT,
|
|
UNIT_VOLT,
|
|
PlatformFramework,
|
|
)
|
|
from esphome.core import CORE
|
|
|
|
from . import (
|
|
ATTENUATION_MODES,
|
|
ESP32_VARIANT_ADC1_PIN_TO_CHANNEL,
|
|
ESP32_VARIANT_ADC2_PIN_TO_CHANNEL,
|
|
SAMPLING_MODES,
|
|
adc_ns,
|
|
adc_unit_t,
|
|
validate_adc_pin,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
AUTO_LOAD = ["voltage_sampler"]
|
|
|
|
CONF_SAMPLES = "samples"
|
|
CONF_SAMPLING_MODE = "sampling_mode"
|
|
|
|
|
|
_attenuation = cv.enum(ATTENUATION_MODES, lower=True)
|
|
_sampling_mode = cv.enum(SAMPLING_MODES, lower=True)
|
|
|
|
|
|
def validate_config(config):
|
|
if config[CONF_RAW] and config.get(CONF_ATTENUATION, None) == "auto":
|
|
raise cv.Invalid("Automatic attenuation cannot be used when raw output is set")
|
|
|
|
if config.get(CONF_ATTENUATION, None) == "auto" and config.get(CONF_SAMPLES, 1) > 1:
|
|
raise cv.Invalid(
|
|
"Automatic attenuation cannot be used when multisampling is set"
|
|
)
|
|
if config.get(CONF_ATTENUATION) == "11db":
|
|
_LOGGER.warning(
|
|
"`attenuation: 11db` is deprecated, use `attenuation: 12db` instead"
|
|
)
|
|
# Alter value here so `config` command prints the recommended change
|
|
config[CONF_ATTENUATION] = _attenuation("12db")
|
|
|
|
return config
|
|
|
|
|
|
ADCSensor = adc_ns.class_(
|
|
"ADCSensor", sensor.Sensor, cg.PollingComponent, voltage_sampler.VoltageSampler
|
|
)
|
|
|
|
CONF_NRF_SAADC = "nrf_saadc"
|
|
|
|
adc_dt_spec = cg.global_ns.class_("adc_dt_spec")
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
sensor.sensor_schema(
|
|
ADCSensor,
|
|
unit_of_measurement=UNIT_VOLT,
|
|
accuracy_decimals=2,
|
|
device_class=DEVICE_CLASS_VOLTAGE,
|
|
state_class=STATE_CLASS_MEASUREMENT,
|
|
)
|
|
.extend(
|
|
{
|
|
cv.Required(CONF_PIN): validate_adc_pin,
|
|
cv.Optional(CONF_RAW, default=False): cv.boolean,
|
|
cv.SplitDefault(CONF_ATTENUATION, esp32="0db"): cv.All(
|
|
cv.only_on_esp32, _attenuation
|
|
),
|
|
cv.OnlyWith(CONF_NRF_SAADC, PLATFORM_NRF52): cv.declare_id(adc_dt_spec),
|
|
cv.Optional(CONF_SAMPLES, default=1): cv.int_range(min=1, max=255),
|
|
cv.Optional(CONF_SAMPLING_MODE, default="avg"): _sampling_mode,
|
|
}
|
|
)
|
|
.extend(cv.polling_component_schema("60s")),
|
|
validate_config,
|
|
)
|
|
|
|
CONF_ADC_CHANNEL_ID = "adc_channel_id"
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await cg.register_component(var, config)
|
|
await sensor.register_sensor(var, config)
|
|
|
|
if config[CONF_PIN] == "VCC":
|
|
cg.add_define("USE_ADC_SENSOR_VCC")
|
|
elif config[CONF_PIN] == "TEMPERATURE":
|
|
cg.add(var.set_is_temperature())
|
|
elif not CORE.is_nrf52 or config[CONF_PIN][CONF_NUMBER] not in EXTRA_ADC:
|
|
pin = await cg.gpio_pin_expression(config[CONF_PIN])
|
|
cg.add(var.set_pin(pin))
|
|
|
|
cg.add(var.set_output_raw(config[CONF_RAW]))
|
|
cg.add(var.set_sample_count(config[CONF_SAMPLES]))
|
|
cg.add(var.set_sampling_mode(config[CONF_SAMPLING_MODE]))
|
|
|
|
if CORE.is_esp32:
|
|
if attenuation := config.get(CONF_ATTENUATION):
|
|
if attenuation == "auto":
|
|
cg.add(var.set_autorange(cg.global_ns.true))
|
|
else:
|
|
cg.add(var.set_attenuation(attenuation))
|
|
|
|
variant = get_esp32_variant()
|
|
pin_num = config[CONF_PIN][CONF_NUMBER]
|
|
if (
|
|
variant in ESP32_VARIANT_ADC1_PIN_TO_CHANNEL
|
|
and pin_num in ESP32_VARIANT_ADC1_PIN_TO_CHANNEL[variant]
|
|
):
|
|
chan = ESP32_VARIANT_ADC1_PIN_TO_CHANNEL[variant][pin_num]
|
|
cg.add(var.set_channel(adc_unit_t.ADC_UNIT_1, chan))
|
|
elif (
|
|
variant in ESP32_VARIANT_ADC2_PIN_TO_CHANNEL
|
|
and pin_num in ESP32_VARIANT_ADC2_PIN_TO_CHANNEL[variant]
|
|
):
|
|
chan = ESP32_VARIANT_ADC2_PIN_TO_CHANNEL[variant][pin_num]
|
|
cg.add(var.set_channel(adc_unit_t.ADC_UNIT_2, chan))
|
|
|
|
elif CORE.is_nrf52:
|
|
CORE.data.setdefault(CONF_ADC_CHANNEL_ID, 0)
|
|
channel_id = CORE.data[CONF_ADC_CHANNEL_ID]
|
|
CORE.data[CONF_ADC_CHANNEL_ID] = channel_id + 1
|
|
zephyr_add_prj_conf("ADC", True)
|
|
nrf_saadc = config[CONF_NRF_SAADC]
|
|
rhs = cg.RawExpression(
|
|
f"ADC_DT_SPEC_GET_BY_IDX(DT_PATH(zephyr_user), {channel_id})"
|
|
)
|
|
adc = cg.new_Pvariable(nrf_saadc, rhs)
|
|
cg.add(var.set_adc_channel(adc))
|
|
gain = "ADC_GAIN_1_6"
|
|
pin_number = config[CONF_PIN][CONF_NUMBER]
|
|
if pin_number == "VDDHDIV5":
|
|
gain = "ADC_GAIN_1_2"
|
|
if isinstance(pin_number, int):
|
|
GPIO_TO_AIN = {v: k for k, v in AIN_TO_GPIO.items()}
|
|
pin_number = GPIO_TO_AIN[pin_number]
|
|
zephyr_add_user("io-channels", f"<&adc {channel_id}>")
|
|
zephyr_add_overlay(
|
|
f"""
|
|
&adc {{
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
channel@{channel_id} {{
|
|
reg = <{channel_id}>;
|
|
zephyr,gain = "{gain}";
|
|
zephyr,reference = "ADC_REF_INTERNAL";
|
|
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;
|
|
zephyr,input-positive = <NRF_SAADC_{pin_number}>;
|
|
zephyr,resolution = <14>;
|
|
zephyr,oversampling = <8>;
|
|
}};
|
|
}};
|
|
"""
|
|
)
|
|
|
|
|
|
FILTER_SOURCE_FILES = filter_source_files_from_platform(
|
|
{
|
|
"adc_sensor_esp32.cpp": {
|
|
PlatformFramework.ESP32_ARDUINO,
|
|
PlatformFramework.ESP32_IDF,
|
|
},
|
|
"adc_sensor_esp8266.cpp": {PlatformFramework.ESP8266_ARDUINO},
|
|
"adc_sensor_rp2040.cpp": {PlatformFramework.RP2040_ARDUINO},
|
|
"adc_sensor_libretiny.cpp": {
|
|
PlatformFramework.BK72XX_ARDUINO,
|
|
PlatformFramework.RTL87XX_ARDUINO,
|
|
PlatformFramework.LN882X_ARDUINO,
|
|
},
|
|
"adc_sensor_zephyr.cpp": {PlatformFramework.NRF52_ZEPHYR},
|
|
}
|
|
)
|