Fix default iir

This commit is contained in:
Jesse Hills 2023-03-16 16:25:09 +13:00
parent 7b1fa5b2fa
commit fa3b4d7b95
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ VOLTAGE_ATTENUATION = {
def _default_iir_filter(config):
if esp32.get_esp32_variant() == esp32.const.VARIANT_ESP32:
if CONF_IIR_FILTER not in config:
config[CONF_IIR_FILTER] = "0ms"
config[CONF_IIR_FILTER] = 0
return config