esphome 2024.7.2__py3-none-any.whl → 2024.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- esphome/__main__.py +15 -81
- esphome/automation.py +1 -1
- esphome/codegen.py +53 -53
- esphome/components/ade7953/sensor.py +1 -1
- esphome/components/ade7953_spi/ade7953_spi.cpp +1 -1
- esphome/components/airthings_wave_plus/airthings_wave_plus.cpp +5 -2
- esphome/components/airthings_wave_plus/airthings_wave_plus.h +2 -0
- esphome/components/airthings_wave_plus/sensor.py +12 -0
- esphome/components/alarm_control_panel/__init__.py +75 -66
- esphome/components/apds9306/__init__.py +4 -0
- esphome/components/apds9306/apds9306.cpp +151 -0
- esphome/components/apds9306/apds9306.h +66 -0
- esphome/components/apds9306/sensor.py +95 -0
- esphome/components/api/__init__.py +80 -52
- esphome/components/api/api_connection.cpp +14 -1
- esphome/components/api/api_pb2.cpp +33 -4
- esphome/components/api/api_pb2.h +8 -1
- esphome/components/api/api_server.cpp +10 -0
- esphome/components/api/api_server.h +3 -0
- esphome/components/atm90e32/__init__.py +7 -0
- esphome/components/atm90e32/atm90e32.cpp +68 -16
- esphome/components/atm90e32/atm90e32.h +20 -7
- esphome/components/atm90e32/atm90e32_reg.h +2 -0
- esphome/components/atm90e32/button/__init__.py +43 -0
- esphome/components/atm90e32/button/atm90e32_button.cpp +20 -0
- esphome/components/atm90e32/button/atm90e32_button.h +27 -0
- esphome/components/atm90e32/sensor.py +15 -11
- esphome/components/bedjet/bedjet_codec.h +1 -1
- esphome/components/binary/light/binary_light_output.h +3 -2
- esphome/components/binary_sensor/__init__.py +5 -5
- esphome/components/ble_client/__init__.py +3 -3
- esphome/components/ble_client/output/__init__.py +1 -1
- esphome/components/ble_client/sensor/__init__.py +4 -3
- esphome/components/ble_client/switch/__init__.py +2 -1
- esphome/components/ble_client/text_sensor/__init__.py +4 -3
- esphome/components/ble_presence/binary_sensor.py +3 -3
- esphome/components/ble_rssi/sensor.py +2 -2
- esphome/components/ble_scanner/text_sensor.py +1 -1
- esphome/components/bluetooth_proxy/__init__.py +3 -3
- esphome/components/bme68x_bsec2/__init__.py +196 -0
- esphome/components/bme68x_bsec2/bme68x_bsec2.cpp +523 -0
- esphome/components/bme68x_bsec2/bme68x_bsec2.h +163 -0
- esphome/components/bme68x_bsec2/sensor.py +130 -0
- esphome/components/bme68x_bsec2/text_sensor.py +33 -0
- esphome/components/bme68x_bsec2_i2c/__init__.py +28 -0
- esphome/components/bme68x_bsec2_i2c/bme68x_bsec2_i2c.cpp +53 -0
- esphome/components/bme68x_bsec2_i2c/bme68x_bsec2_i2c.h +28 -0
- esphome/components/bmp3xx/sensor.py +1 -1
- esphome/components/button/__init__.py +4 -4
- esphome/components/climate/__init__.py +5 -5
- esphome/components/climate/climate.h +1 -1
- esphome/components/cover/__init__.py +8 -8
- esphome/components/cst226/touchscreen/cst226_touchscreen.cpp +11 -7
- esphome/components/cst226/touchscreen/cst226_touchscreen.h +1 -1
- esphome/components/datetime/__init__.py +11 -13
- esphome/components/demo/demo_sensor.h +3 -2
- esphome/components/display/display.cpp +31 -0
- esphome/components/display/display.h +3 -0
- esphome/components/display_menu_base/__init__.py +14 -13
- esphome/components/ens160/sensor.py +1 -1
- esphome/components/esp32/__init__.py +22 -10
- esphome/components/esp32/boards.py +1 -1
- esphome/components/esp32/gpio.py +12 -13
- esphome/components/esp32/gpio_esp32.py +1 -2
- esphome/components/esp32/gpio_esp32_c2.py +1 -2
- esphome/components/esp32/gpio_esp32_c3.py +1 -5
- esphome/components/esp32/gpio_esp32_c6.py +1 -2
- esphome/components/esp32/gpio_esp32_h2.py +1 -2
- esphome/components/esp32/gpio_esp32_s2.py +1 -2
- esphome/components/esp32/gpio_esp32_s3.py +1 -6
- esphome/components/esp32_ble/__init__.py +20 -3
- esphome/components/esp32_ble/ble.cpp +9 -1
- esphome/components/esp32_ble/ble.h +9 -0
- esphome/components/esp32_ble/ble_advertising.cpp +42 -9
- esphome/components/esp32_ble/ble_advertising.h +21 -1
- esphome/components/esp32_ble_beacon/__init__.py +17 -7
- esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp +45 -113
- esphome/components/esp32_ble_beacon/esp32_ble_beacon.h +17 -19
- esphome/components/esp32_ble_client/__init__.py +0 -1
- esphome/components/esp32_ble_server/__init__.py +2 -3
- esphome/components/esp32_ble_tracker/__init__.py +2 -2
- esphome/components/esp32_improv/__init__.py +2 -4
- esphome/components/ethernet/__init__.py +17 -17
- esphome/components/ethernet_info/text_sensor.py +2 -2
- esphome/components/event/__init__.py +5 -5
- esphome/components/fan/__init__.py +14 -14
- esphome/components/fan/fan.cpp +2 -2
- esphome/components/fingerprint_grow/fingerprint_grow.cpp +1 -1
- esphome/components/fingerprint_grow/fingerprint_grow.h +1 -1
- esphome/components/graphical_display_menu/__init__.py +11 -8
- esphome/components/haier/haier_base.h +2 -2
- esphome/components/homeassistant/__init__.py +8 -1
- esphome/components/homeassistant/number/__init__.py +33 -0
- esphome/components/homeassistant/number/homeassistant_number.cpp +100 -0
- esphome/components/homeassistant/number/homeassistant_number.h +31 -0
- esphome/components/homeassistant/switch/__init__.py +30 -0
- esphome/components/homeassistant/switch/homeassistant_switch.cpp +59 -0
- esphome/components/homeassistant/switch/homeassistant_switch.h +22 -0
- esphome/components/host/__init__.py +3 -7
- esphome/components/http_request/__init__.py +12 -1
- esphome/components/http_request/http_request_arduino.cpp +2 -2
- esphome/components/http_request/http_request_idf.cpp +11 -2
- esphome/components/http_request/http_request_idf.h +10 -0
- esphome/components/http_request/ota/ota_http_request.cpp +1 -1
- esphome/components/http_request/update/http_request_update.cpp +2 -2
- esphome/components/http_request/update/http_request_update.h +2 -1
- esphome/components/hx711/hx711.cpp +10 -1
- esphome/components/hydreon_rgxx/hydreon_rgxx.cpp +1 -1
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp +11 -2
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.h +2 -0
- esphome/components/ili9xxx/ili9xxx_defines.h +3 -1
- esphome/components/ili9xxx/ili9xxx_display.cpp +9 -22
- esphome/components/ili9xxx/ili9xxx_display.h +5 -7
- esphome/components/ili9xxx/ili9xxx_init.h +4 -4
- esphome/components/improv_base/__init__.py +2 -3
- esphome/components/improv_serial/__init__.py +4 -10
- esphome/components/improv_serial/improv_serial_component.cpp +4 -0
- esphome/components/jsn_sr04t/jsn_sr04t.cpp +18 -1
- esphome/components/jsn_sr04t/jsn_sr04t.h +7 -1
- esphome/components/jsn_sr04t/sensor.py +13 -0
- esphome/components/kalman_combinator/sensor.py +1 -1
- esphome/components/light/__init__.py +16 -15
- esphome/components/light/addressable_light_effect.h +12 -8
- esphome/components/light/automation.h +16 -1
- esphome/components/light/automation.py +21 -0
- esphome/components/light/base_light_effects.h +5 -5
- esphome/components/light/esp_color_correction.h +8 -8
- esphome/components/light/types.py +7 -0
- esphome/components/lock/__init__.py +3 -3
- esphome/components/logger/__init__.py +15 -18
- esphome/components/lvgl/__init__.py +346 -0
- esphome/components/lvgl/automation.py +226 -0
- esphome/components/lvgl/binary_sensor/__init__.py +43 -0
- esphome/components/lvgl/defines.py +508 -0
- esphome/components/lvgl/encoders.py +77 -0
- esphome/components/lvgl/font.cpp +76 -0
- esphome/components/lvgl/helpers.py +49 -0
- esphome/components/lvgl/light/__init__.py +32 -0
- esphome/components/lvgl/light/lvgl_light.h +48 -0
- esphome/components/lvgl/lv_validation.py +303 -0
- esphome/components/lvgl/lvcode.py +349 -0
- esphome/components/lvgl/lvgl_esphome.cpp +407 -0
- esphome/components/lvgl/lvgl_esphome.h +274 -0
- esphome/components/lvgl/lvgl_hal.h +21 -0
- esphome/components/lvgl/number/__init__.py +66 -0
- esphome/components/lvgl/number/lvgl_number.h +34 -0
- esphome/components/lvgl/schemas.py +436 -0
- esphome/components/lvgl/select/__init__.py +55 -0
- esphome/components/lvgl/select/lvgl_select.h +62 -0
- esphome/components/lvgl/sensor/__init__.py +47 -0
- esphome/components/lvgl/styles.py +58 -0
- esphome/components/lvgl/switch/__init__.py +56 -0
- esphome/components/lvgl/switch/lvgl_switch.h +34 -0
- esphome/components/lvgl/text/__init__.py +50 -0
- esphome/components/lvgl/text/lvgl_text.h +34 -0
- esphome/components/lvgl/text_sensor/__init__.py +42 -0
- esphome/components/lvgl/touchscreens.py +45 -0
- esphome/components/lvgl/trigger.py +74 -0
- esphome/components/lvgl/types.py +191 -0
- esphome/components/lvgl/widgets/__init__.py +419 -0
- esphome/components/lvgl/widgets/animimg.py +117 -0
- esphome/components/lvgl/widgets/arc.py +78 -0
- esphome/components/lvgl/widgets/button.py +20 -0
- esphome/components/lvgl/widgets/buttonmatrix.py +275 -0
- esphome/components/lvgl/widgets/checkbox.py +27 -0
- esphome/components/lvgl/widgets/dropdown.py +76 -0
- esphome/components/lvgl/widgets/img.py +85 -0
- esphome/components/lvgl/widgets/keyboard.py +49 -0
- esphome/components/lvgl/widgets/label.py +42 -0
- esphome/components/lvgl/widgets/led.py +29 -0
- esphome/components/lvgl/widgets/line.py +50 -0
- esphome/components/lvgl/widgets/lv_bar.py +55 -0
- esphome/components/lvgl/widgets/meter.py +302 -0
- esphome/components/lvgl/widgets/msgbox.py +134 -0
- esphome/components/lvgl/widgets/obj.py +28 -0
- esphome/components/lvgl/widgets/page.py +113 -0
- esphome/components/lvgl/widgets/roller.py +77 -0
- esphome/components/lvgl/widgets/slider.py +63 -0
- esphome/components/lvgl/widgets/spinbox.py +178 -0
- esphome/components/lvgl/widgets/spinner.py +43 -0
- esphome/components/lvgl/widgets/switch.py +20 -0
- esphome/components/lvgl/widgets/tabview.py +114 -0
- esphome/components/lvgl/widgets/textarea.py +66 -0
- esphome/components/lvgl/widgets/tileview.py +128 -0
- esphome/components/m5stack_8angle/__init__.py +33 -0
- esphome/components/m5stack_8angle/binary_sensor/__init__.py +30 -0
- esphome/components/m5stack_8angle/binary_sensor/m5stack_8angle_binary_sensor.cpp +17 -0
- esphome/components/m5stack_8angle/binary_sensor/m5stack_8angle_binary_sensor.h +19 -0
- esphome/components/m5stack_8angle/light/__init__.py +31 -0
- esphome/components/m5stack_8angle/light/m5stack_8angle_light.cpp +45 -0
- esphome/components/m5stack_8angle/light/m5stack_8angle_light.h +37 -0
- esphome/components/m5stack_8angle/m5stack_8angle.cpp +74 -0
- esphome/components/m5stack_8angle/m5stack_8angle.h +34 -0
- esphome/components/m5stack_8angle/sensor/__init__.py +66 -0
- esphome/components/m5stack_8angle/sensor/m5stack_8angle_sensor.cpp +24 -0
- esphome/components/m5stack_8angle/sensor/m5stack_8angle_sensor.h +27 -0
- esphome/components/matrix_keypad/matrix_keypad.cpp +2 -0
- esphome/components/max31856/sensor.py +5 -5
- esphome/components/media_player/__init__.py +3 -5
- esphome/components/media_player/automation.h +31 -27
- esphome/components/micro_wake_word/__init__.py +20 -25
- esphome/components/micro_wake_word/streaming_model.cpp +6 -4
- esphome/components/microphone/microphone.h +4 -1
- esphome/components/mitsubishi/mitsubishi.cpp +7 -1
- esphome/components/modbus_controller/__init__.py +26 -2
- esphome/components/modbus_controller/automation.h +19 -0
- esphome/components/modbus_controller/const.py +1 -0
- esphome/components/modbus_controller/modbus_controller.cpp +8 -0
- esphome/components/modbus_controller/modbus_controller.h +3 -0
- esphome/components/mqtt/__init__.py +20 -9
- esphome/components/mqtt/mqtt_alarm_control_panel.cpp +128 -0
- esphome/components/mqtt/mqtt_alarm_control_panel.h +39 -0
- esphome/components/mqtt/mqtt_backend.h +3 -1
- esphome/components/mqtt/mqtt_backend_esp32.cpp +4 -1
- esphome/components/mqtt/mqtt_backend_esp32.h +3 -1
- esphome/components/mqtt/mqtt_backend_esp8266.h +3 -1
- esphome/components/mqtt/mqtt_backend_libretiny.h +3 -1
- esphome/components/mqtt/mqtt_client.cpp +16 -3
- esphome/components/mqtt/mqtt_client.h +5 -1
- esphome/components/mqtt/mqtt_component.cpp +32 -4
- esphome/components/mqtt/mqtt_const.h +2 -0
- esphome/components/network/__init__.py +15 -12
- esphome/components/network/ip_address.h +3 -0
- esphome/components/network/util.cpp +2 -1
- esphome/components/network/util.h +3 -1
- esphome/components/nextion/base_component.py +5 -8
- esphome/components/number/__init__.py +7 -8
- esphome/components/online_image/__init__.py +167 -0
- esphome/components/online_image/image_decoder.cpp +44 -0
- esphome/components/online_image/image_decoder.h +112 -0
- esphome/components/online_image/online_image.cpp +283 -0
- esphome/components/online_image/online_image.h +195 -0
- esphome/components/online_image/png_image.cpp +68 -0
- esphome/components/online_image/png_image.h +33 -0
- esphome/components/ota/__init__.py +8 -4
- esphome/components/pid/pid_climate.h +2 -0
- esphome/components/pmwcs3/pmwcs3.cpp +31 -30
- esphome/components/remote_base/pronto_protocol.cpp +0 -3
- esphome/components/remote_transmitter/remote_transmitter.h +1 -1
- esphome/components/rgbct/rgbct_light_output.h +3 -2
- esphome/components/rgbw/rgbw_light_output.h +3 -2
- esphome/components/rgbww/rgbww_light_output.h +3 -2
- esphome/components/rp2040_pio_led_strip/led_strip.cpp +31 -5
- esphome/components/rp2040_pio_led_strip/led_strip.h +5 -0
- esphome/components/rtttl/rtttl.cpp +108 -21
- esphome/components/rtttl/rtttl.h +15 -6
- esphome/components/select/__init__.py +7 -7
- esphome/components/sensor/__init__.py +29 -10
- esphome/components/sensor/filter.cpp +8 -0
- esphome/components/sensor/filter.h +9 -0
- esphome/components/sml/sml_parser.cpp +48 -22
- esphome/components/socket/socket.cpp +11 -14
- esphome/components/speaker/__init__.py +14 -5
- esphome/components/speaker/automation.h +10 -0
- esphome/components/speaker/speaker.h +9 -0
- esphome/components/spi/spi.cpp +0 -6
- esphome/components/spi/spi.h +2 -19
- esphome/components/spi_led_strip/spi_led_strip.h +5 -4
- esphome/components/sprinkler/sprinkler.cpp +2 -2
- esphome/components/sprinkler/sprinkler.h +1 -1
- esphome/components/switch/__init__.py +3 -3
- esphome/components/text/__init__.py +5 -5
- esphome/components/text_sensor/__init__.py +7 -7
- esphome/components/time/__init__.py +8 -8
- esphome/components/touchscreen/binary_sensor/__init__.py +24 -10
- esphome/components/touchscreen/binary_sensor/touchscreen_binary_sensor.cpp +3 -2
- esphome/components/touchscreen/binary_sensor/touchscreen_binary_sensor.h +4 -2
- esphome/components/uart/uart_component_host.cpp +6 -2
- esphome/components/update/__init__.py +33 -15
- esphome/components/update/automation.h +23 -0
- esphome/components/update/update_entity.h +3 -1
- esphome/components/valve/__init__.py +3 -3
- esphome/components/voice_assistant/__init__.py +7 -8
- esphome/components/wake_on_lan/wake_on_lan.cpp +2 -0
- esphome/components/wake_on_lan/wake_on_lan.h +3 -1
- esphome/components/watchdog/__init__.py +1 -0
- esphome/components/{http_request → watchdog}/watchdog.cpp +0 -2
- esphome/components/{http_request → watchdog}/watchdog.h +0 -2
- esphome/components/waveshare_epaper/waveshare_epaper.cpp +5 -5
- esphome/components/web_server/server_index_v3.h +3615 -3603
- esphome/components/web_server/web_server.cpp +0 -209
- esphome/components/web_server/web_server.h +1 -1
- esphome/components/web_server/web_server_v1.cpp +217 -0
- esphome/components/web_server_base/web_server_base.h +1 -0
- esphome/components/wifi/__init__.py +15 -14
- esphome/components/wifi/wifi_component.cpp +2 -0
- esphome/components/wifi/wifi_component.h +7 -1
- esphome/components/wifi/wifi_component_esp32_arduino.cpp +5 -2
- esphome/components/wifi/wifi_component_esp8266.cpp +2 -0
- esphome/components/wifi/wifi_component_esp_idf.cpp +43 -7
- esphome/components/wifi/wifi_component_libretiny.cpp +2 -0
- esphome/components/wifi/wifi_component_pico_w.cpp +2 -0
- esphome/components/wifi/wpa2_eap.py +6 -7
- esphome/components/wifi_info/text_sensor.py +3 -3
- esphome/components/wifi_info/wifi_info_text_sensor.cpp +2 -0
- esphome/components/wifi_info/wifi_info_text_sensor.h +2 -0
- esphome/components/wifi_signal/sensor.py +1 -1
- esphome/components/wifi_signal/wifi_signal_sensor.cpp +2 -0
- esphome/components/wifi_signal/wifi_signal_sensor.h +2 -1
- esphome/components/xiaomi_ble/xiaomi_ble.cpp +20 -3
- esphome/components/xiaomi_ble/xiaomi_ble.h +1 -0
- esphome/components/xiaomi_lywsd02mmc/__init__.py +0 -0
- esphome/components/xiaomi_lywsd02mmc/sensor.py +77 -0
- esphome/components/xiaomi_lywsd02mmc/xiaomi_lywsd02mmc.cpp +73 -0
- esphome/components/xiaomi_lywsd02mmc/xiaomi_lywsd02mmc.h +37 -0
- esphome/config.py +17 -19
- esphome/config_validation.py +55 -23
- esphome/const.py +25 -9
- esphome/core/__init__.py +17 -14
- esphome/core/application.h +42 -21
- esphome/core/automation.h +5 -3
- esphome/core/base_automation.h +3 -2
- esphome/core/bytebuffer.cpp +134 -0
- esphome/core/bytebuffer.h +96 -0
- esphome/core/color.h +24 -16
- esphome/core/config.py +3 -3
- esphome/core/defines.h +14 -1
- esphome/core/entity_base.h +2 -2
- esphome/core/entity_helpers.py +1 -2
- esphome/core/gpio.h +0 -18
- esphome/core/helpers.h +1 -1
- esphome/core/optional.h +15 -16
- esphome/coroutine.py +1 -1
- esphome/cpp_generator.py +1 -1
- esphome/cpp_helpers.py +3 -5
- esphome/dashboard/core.py +3 -3
- esphome/dashboard/dashboard.py +3 -3
- esphome/dashboard/entries.py +1 -1
- esphome/dashboard/util/file.py +1 -1
- esphome/dashboard/web_server.py +3 -3
- esphome/external_files.py +5 -3
- esphome/final_validate.py +2 -2
- esphome/git.py +4 -4
- esphome/helpers.py +5 -5
- esphome/loader.py +15 -10
- esphome/mqtt.py +4 -8
- esphome/pins.py +6 -6
- esphome/platformio_api.py +5 -5
- esphome/storage_json.py +2 -1
- esphome/types.py +1 -1
- esphome/util.py +2 -3
- esphome/voluptuous_schema.py +1 -0
- esphome/vscode.py +5 -4
- esphome/wizard.py +1 -1
- esphome/writer.py +7 -7
- esphome/yaml_util.py +3 -3
- esphome/zeroconf.py +1 -1
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/METADATA +3 -3
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/RECORD +353 -247
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/LICENSE +0 -0
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/WHEEL +0 -0
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/entry_points.txt +0 -0
- {esphome-2024.7.2.dist-info → esphome-2024.8.0.dist-info}/top_level.txt +0 -0
@@ -201,9 +201,6 @@ std::string ProntoProtocol::compensate_and_dump_sequence_(const RawTimings &data
|
|
201
201
|
out += dump_duration_(t_duration, timebase);
|
202
202
|
}
|
203
203
|
|
204
|
-
// append minimum gap
|
205
|
-
out += dump_duration_(PRONTO_DEFAULT_GAP, timebase, true);
|
206
|
-
|
207
204
|
return out;
|
208
205
|
}
|
209
206
|
|
@@ -49,7 +49,7 @@ class RemoteTransmitterComponent : public remote_base::RemoteTransmitterBase,
|
|
49
49
|
#ifdef USE_ESP32
|
50
50
|
void configure_rmt_();
|
51
51
|
|
52
|
-
uint32_t current_carrier_frequency_{
|
52
|
+
uint32_t current_carrier_frequency_{38000};
|
53
53
|
bool initialized_{false};
|
54
54
|
std::vector<rmt_item32_t> rmt_temp_;
|
55
55
|
esp_err_t error_code_{ESP_OK};
|
@@ -23,10 +23,11 @@ class RGBCTLightOutput : public light::LightOutput {
|
|
23
23
|
|
24
24
|
light::LightTraits get_traits() override {
|
25
25
|
auto traits = light::LightTraits();
|
26
|
-
if (this->color_interlock_)
|
26
|
+
if (this->color_interlock_) {
|
27
27
|
traits.set_supported_color_modes({light::ColorMode::RGB, light::ColorMode::COLOR_TEMPERATURE});
|
28
|
-
else
|
28
|
+
} else {
|
29
29
|
traits.set_supported_color_modes({light::ColorMode::RGB_COLOR_TEMPERATURE, light::ColorMode::COLOR_TEMPERATURE});
|
30
|
+
}
|
30
31
|
traits.set_min_mireds(this->cold_white_temperature_);
|
31
32
|
traits.set_max_mireds(this->warm_white_temperature_);
|
32
33
|
return traits;
|
@@ -16,10 +16,11 @@ class RGBWLightOutput : public light::LightOutput {
|
|
16
16
|
void set_color_interlock(bool color_interlock) { color_interlock_ = color_interlock; }
|
17
17
|
light::LightTraits get_traits() override {
|
18
18
|
auto traits = light::LightTraits();
|
19
|
-
if (this->color_interlock_)
|
19
|
+
if (this->color_interlock_) {
|
20
20
|
traits.set_supported_color_modes({light::ColorMode::RGB, light::ColorMode::WHITE});
|
21
|
-
else
|
21
|
+
} else {
|
22
22
|
traits.set_supported_color_modes({light::ColorMode::RGB_WHITE});
|
23
|
+
}
|
23
24
|
return traits;
|
24
25
|
}
|
25
26
|
void write_state(light::LightState *state) override {
|
@@ -20,10 +20,11 @@ class RGBWWLightOutput : public light::LightOutput {
|
|
20
20
|
void set_color_interlock(bool color_interlock) { color_interlock_ = color_interlock; }
|
21
21
|
light::LightTraits get_traits() override {
|
22
22
|
auto traits = light::LightTraits();
|
23
|
-
if (this->color_interlock_)
|
23
|
+
if (this->color_interlock_) {
|
24
24
|
traits.set_supported_color_modes({light::ColorMode::RGB, light::ColorMode::COLD_WARM_WHITE});
|
25
|
-
else
|
25
|
+
} else {
|
26
26
|
traits.set_supported_color_modes({light::ColorMode::RGB_COLD_WARM_WHITE});
|
27
|
+
}
|
27
28
|
traits.set_min_mireds(this->cold_white_temperature_);
|
28
29
|
traits.set_max_mireds(this->warm_white_temperature_);
|
29
30
|
return traits;
|
@@ -7,8 +7,10 @@
|
|
7
7
|
|
8
8
|
#include <hardware/clocks.h>
|
9
9
|
#include <hardware/dma.h>
|
10
|
+
#include <hardware/irq.h>
|
10
11
|
#include <hardware/pio.h>
|
11
12
|
#include <pico/stdlib.h>
|
13
|
+
#include <pico/sem.h>
|
12
14
|
|
13
15
|
namespace esphome {
|
14
16
|
namespace rp2040_pio_led_strip {
|
@@ -23,6 +25,19 @@ static std::map<Chipset, bool> conf_count_ = {
|
|
23
25
|
{CHIPSET_WS2812, false}, {CHIPSET_WS2812B, false}, {CHIPSET_SK6812, false},
|
24
26
|
{CHIPSET_SM16703, false}, {CHIPSET_CUSTOM, false},
|
25
27
|
};
|
28
|
+
static bool dma_chan_active_[12];
|
29
|
+
static struct semaphore dma_write_complete_sem_[12];
|
30
|
+
|
31
|
+
// DMA interrupt service routine
|
32
|
+
void RP2040PIOLEDStripLightOutput::dma_write_complete_handler_() {
|
33
|
+
uint32_t channel = dma_hw->ints0;
|
34
|
+
for (uint dma_chan = 0; dma_chan < 12; ++dma_chan) {
|
35
|
+
if (RP2040PIOLEDStripLightOutput::dma_chan_active_[dma_chan] && (channel & (1u << dma_chan))) {
|
36
|
+
dma_hw->ints0 = (1u << dma_chan); // Clear the interrupt
|
37
|
+
sem_release(&RP2040PIOLEDStripLightOutput::dma_write_complete_sem_[dma_chan]); // Handle the interrupt
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
26
41
|
|
27
42
|
void RP2040PIOLEDStripLightOutput::setup() {
|
28
43
|
ESP_LOGCONFIG(TAG, "Setting up RP2040 LED Strip...");
|
@@ -57,22 +72,22 @@ void RP2040PIOLEDStripLightOutput::setup() {
|
|
57
72
|
// but there are only 4 state machines on each PIO so we can only have 4 strips per PIO
|
58
73
|
uint offset = 0;
|
59
74
|
|
60
|
-
if (num_instance_[this->pio_ == pio0 ? 0 : 1] > 4) {
|
75
|
+
if (RP2040PIOLEDStripLightOutput::num_instance_[this->pio_ == pio0 ? 0 : 1] > 4) {
|
61
76
|
ESP_LOGE(TAG, "Too many instances of PIO program");
|
62
77
|
this->mark_failed();
|
63
78
|
return;
|
64
79
|
}
|
65
80
|
// keep track of how many instances of the PIO program are running on each PIO
|
66
|
-
num_instance_[this->pio_ == pio0 ? 0 : 1]++;
|
81
|
+
RP2040PIOLEDStripLightOutput::num_instance_[this->pio_ == pio0 ? 0 : 1]++;
|
67
82
|
|
68
83
|
// if there are multiple strips of the same chipset, we can reuse the same PIO program and save space
|
69
84
|
if (this->conf_count_[this->chipset_]) {
|
70
|
-
offset = chipset_offsets_[this->chipset_];
|
85
|
+
offset = RP2040PIOLEDStripLightOutput::chipset_offsets_[this->chipset_];
|
71
86
|
} else {
|
72
87
|
// Load the assembled program into the PIO and get its location in the PIO's instruction memory and save it
|
73
88
|
offset = pio_add_program(this->pio_, this->program_);
|
74
|
-
chipset_offsets_[this->chipset_] = offset;
|
75
|
-
conf_count_[this->chipset_] = true;
|
89
|
+
RP2040PIOLEDStripLightOutput::chipset_offsets_[this->chipset_] = offset;
|
90
|
+
RP2040PIOLEDStripLightOutput::conf_count_[this->chipset_] = true;
|
76
91
|
}
|
77
92
|
|
78
93
|
// Configure the state machine's PIO, and start it
|
@@ -93,6 +108,9 @@ void RP2040PIOLEDStripLightOutput::setup() {
|
|
93
108
|
return;
|
94
109
|
}
|
95
110
|
|
111
|
+
// Mark the DMA channel as active
|
112
|
+
RP2040PIOLEDStripLightOutput::dma_chan_active_[this->dma_chan_] = true;
|
113
|
+
|
96
114
|
this->dma_config_ = dma_channel_get_default_config(this->dma_chan_);
|
97
115
|
channel_config_set_transfer_data_size(
|
98
116
|
&this->dma_config_,
|
@@ -109,6 +127,13 @@ void RP2040PIOLEDStripLightOutput::setup() {
|
|
109
127
|
false // don't start yet
|
110
128
|
);
|
111
129
|
|
130
|
+
// Initialize the semaphore for this DMA channel
|
131
|
+
sem_init(&RP2040PIOLEDStripLightOutput::dma_write_complete_sem_[this->dma_chan_], 1, 1);
|
132
|
+
|
133
|
+
irq_set_exclusive_handler(DMA_IRQ_0, dma_write_complete_handler_); // after DMA all data, raise an interrupt
|
134
|
+
dma_channel_set_irq0_enabled(this->dma_chan_, true); // map DMA channel to interrupt
|
135
|
+
irq_set_enabled(DMA_IRQ_0, true); // enable interrupt
|
136
|
+
|
112
137
|
this->init_(this->pio_, this->sm_, offset, this->pin_, this->max_refresh_rate_);
|
113
138
|
}
|
114
139
|
|
@@ -126,6 +151,7 @@ void RP2040PIOLEDStripLightOutput::write_state(light::LightState *state) {
|
|
126
151
|
}
|
127
152
|
|
128
153
|
// the bits are already in the correct order for the pio program so we can just copy the buffer using DMA
|
154
|
+
sem_acquire_blocking(&RP2040PIOLEDStripLightOutput::dma_write_complete_sem_[this->dma_chan_]);
|
129
155
|
dma_channel_transfer_from_buffer_now(this->dma_chan_, this->buf_, this->get_buffer_size_());
|
130
156
|
}
|
131
157
|
|
@@ -13,6 +13,7 @@
|
|
13
13
|
#include <hardware/pio.h>
|
14
14
|
#include <hardware/structs/pio.h>
|
15
15
|
#include <pico/stdio.h>
|
16
|
+
#include <pico/sem.h>
|
16
17
|
#include <map>
|
17
18
|
|
18
19
|
namespace esphome {
|
@@ -95,6 +96,8 @@ class RP2040PIOLEDStripLightOutput : public light::AddressableLight {
|
|
95
96
|
|
96
97
|
size_t get_buffer_size_() const { return this->num_leds_ * (3 + this->is_rgbw_); }
|
97
98
|
|
99
|
+
static void dma_write_complete_handler_();
|
100
|
+
|
98
101
|
uint8_t *buf_{nullptr};
|
99
102
|
uint8_t *effect_data_{nullptr};
|
100
103
|
|
@@ -120,6 +123,8 @@ class RP2040PIOLEDStripLightOutput : public light::AddressableLight {
|
|
120
123
|
inline static int num_instance_[2];
|
121
124
|
inline static std::map<Chipset, bool> conf_count_;
|
122
125
|
inline static std::map<Chipset, int> chipset_offsets_;
|
126
|
+
inline static bool dma_chan_active_[12];
|
127
|
+
inline static struct semaphore dma_write_complete_sem_[12];
|
123
128
|
};
|
124
129
|
|
125
130
|
} // namespace rp2040_pio_led_strip
|
@@ -29,6 +29,13 @@ inline double deg2rad(double degrees) {
|
|
29
29
|
void Rtttl::dump_config() { ESP_LOGCONFIG(TAG, "Rtttl"); }
|
30
30
|
|
31
31
|
void Rtttl::play(std::string rtttl) {
|
32
|
+
if (this->state_ != State::STATE_STOPPED && this->state_ != State::STATE_STOPPING) {
|
33
|
+
int pos = this->rtttl_.find(':');
|
34
|
+
auto name = this->rtttl_.substr(0, pos);
|
35
|
+
ESP_LOGW(TAG, "RTTTL Component is already playing: %s", name.c_str());
|
36
|
+
return;
|
37
|
+
}
|
38
|
+
|
32
39
|
this->rtttl_ = std::move(rtttl);
|
33
40
|
|
34
41
|
this->default_duration_ = 4;
|
@@ -98,16 +105,24 @@ void Rtttl::play(std::string rtttl) {
|
|
98
105
|
this->note_duration_ = 1;
|
99
106
|
|
100
107
|
#ifdef USE_SPEAKER
|
101
|
-
this->
|
102
|
-
|
108
|
+
if (this->speaker_ != nullptr) {
|
109
|
+
this->set_state_(State::STATE_INIT);
|
110
|
+
this->samples_sent_ = 0;
|
111
|
+
this->samples_count_ = 0;
|
112
|
+
}
|
113
|
+
#endif
|
114
|
+
#ifdef USE_OUTPUT
|
115
|
+
if (this->output_ != nullptr) {
|
116
|
+
this->set_state_(State::STATE_RUNNING);
|
117
|
+
}
|
103
118
|
#endif
|
104
119
|
}
|
105
120
|
|
106
121
|
void Rtttl::stop() {
|
107
|
-
this->note_duration_ = 0;
|
108
122
|
#ifdef USE_OUTPUT
|
109
123
|
if (this->output_ != nullptr) {
|
110
124
|
this->output_->set_level(0.0);
|
125
|
+
this->set_state_(STATE_STOPPED);
|
111
126
|
}
|
112
127
|
#endif
|
113
128
|
#ifdef USE_SPEAKER
|
@@ -115,18 +130,37 @@ void Rtttl::stop() {
|
|
115
130
|
if (this->speaker_->is_running()) {
|
116
131
|
this->speaker_->stop();
|
117
132
|
}
|
133
|
+
this->set_state_(STATE_STOPPING);
|
118
134
|
}
|
119
135
|
#endif
|
136
|
+
this->note_duration_ = 0;
|
120
137
|
}
|
121
138
|
|
122
139
|
void Rtttl::loop() {
|
123
|
-
if (this->note_duration_ == 0)
|
140
|
+
if (this->note_duration_ == 0 || this->state_ == State::STATE_STOPPED)
|
124
141
|
return;
|
125
142
|
|
126
143
|
#ifdef USE_SPEAKER
|
127
144
|
if (this->speaker_ != nullptr) {
|
145
|
+
if (this->state_ == State::STATE_STOPPING) {
|
146
|
+
if (this->speaker_->is_stopped()) {
|
147
|
+
this->set_state_(State::STATE_STOPPED);
|
148
|
+
}
|
149
|
+
} else if (this->state_ == State::STATE_INIT) {
|
150
|
+
if (this->speaker_->is_stopped()) {
|
151
|
+
this->speaker_->start();
|
152
|
+
this->set_state_(State::STATE_STARTING);
|
153
|
+
}
|
154
|
+
} else if (this->state_ == State::STATE_STARTING) {
|
155
|
+
if (this->speaker_->is_running()) {
|
156
|
+
this->set_state_(State::STATE_RUNNING);
|
157
|
+
}
|
158
|
+
}
|
159
|
+
if (!this->speaker_->is_running()) {
|
160
|
+
return;
|
161
|
+
}
|
128
162
|
if (this->samples_sent_ != this->samples_count_) {
|
129
|
-
SpeakerSample sample[SAMPLE_BUFFER_SIZE +
|
163
|
+
SpeakerSample sample[SAMPLE_BUFFER_SIZE + 2];
|
130
164
|
int x = 0;
|
131
165
|
double rem = 0.0;
|
132
166
|
|
@@ -136,7 +170,7 @@ void Rtttl::loop() {
|
|
136
170
|
if (this->samples_per_wave_ != 0 && this->samples_sent_ >= this->samples_gap_) { // Play note//
|
137
171
|
rem = ((this->samples_sent_ << 10) % this->samples_per_wave_) * (360.0 / this->samples_per_wave_);
|
138
172
|
|
139
|
-
int16_t val = (
|
173
|
+
int16_t val = (127 * this->gain_) * sin(deg2rad(rem)); // 16bit = 49152
|
140
174
|
|
141
175
|
sample[x].left = val;
|
142
176
|
sample[x].right = val;
|
@@ -153,9 +187,9 @@ void Rtttl::loop() {
|
|
153
187
|
x++;
|
154
188
|
}
|
155
189
|
if (x > 0) {
|
156
|
-
int send = this->speaker_->play((uint8_t *) (&sample), x *
|
190
|
+
int send = this->speaker_->play((uint8_t *) (&sample), x * 2);
|
157
191
|
if (send != x * 4) {
|
158
|
-
this->samples_sent_ -= (x - (send /
|
192
|
+
this->samples_sent_ -= (x - (send / 2));
|
159
193
|
}
|
160
194
|
return;
|
161
195
|
}
|
@@ -167,14 +201,7 @@ void Rtttl::loop() {
|
|
167
201
|
return;
|
168
202
|
#endif
|
169
203
|
if (!this->rtttl_[position_]) {
|
170
|
-
this->
|
171
|
-
#ifdef USE_OUTPUT
|
172
|
-
if (this->output_ != nullptr) {
|
173
|
-
this->output_->set_level(0.0);
|
174
|
-
}
|
175
|
-
#endif
|
176
|
-
ESP_LOGD(TAG, "Playback finished");
|
177
|
-
this->on_finished_playback_callback_.call();
|
204
|
+
this->finish_();
|
178
205
|
return;
|
179
206
|
}
|
180
207
|
|
@@ -213,6 +240,7 @@ void Rtttl::loop() {
|
|
213
240
|
case 'a':
|
214
241
|
note = 10;
|
215
242
|
break;
|
243
|
+
case 'h':
|
216
244
|
case 'b':
|
217
245
|
note = 12;
|
218
246
|
break;
|
@@ -238,14 +266,21 @@ void Rtttl::loop() {
|
|
238
266
|
uint8_t scale = get_integer_();
|
239
267
|
if (scale == 0)
|
240
268
|
scale = this->default_octave_;
|
269
|
+
|
270
|
+
if (scale < 4 || scale > 7) {
|
271
|
+
ESP_LOGE(TAG, "Octave out of valid range. Should be between 4 and 7. (Octave: %d)", scale);
|
272
|
+
this->finish_();
|
273
|
+
return;
|
274
|
+
}
|
241
275
|
bool need_note_gap = false;
|
242
276
|
|
243
277
|
// Now play the note
|
244
278
|
if (note) {
|
245
279
|
auto note_index = (scale - 4) * 12 + note;
|
246
280
|
if (note_index < 0 || note_index >= (int) sizeof(NOTES)) {
|
247
|
-
ESP_LOGE(TAG, "Note out of valid range"
|
248
|
-
|
281
|
+
ESP_LOGE(TAG, "Note out of valid range (note: %d, scale: %d, index: %d, max: %d)", note, scale, note_index,
|
282
|
+
(int) sizeof(NOTES));
|
283
|
+
this->finish_();
|
249
284
|
return;
|
250
285
|
}
|
251
286
|
auto freq = NOTES[note_index];
|
@@ -285,14 +320,17 @@ void Rtttl::loop() {
|
|
285
320
|
this->samples_gap_ = (this->sample_rate_ * DOUBLE_NOTE_GAP_MS) / 1600; //(ms);
|
286
321
|
}
|
287
322
|
if (this->output_freq_ != 0) {
|
323
|
+
// make sure there is enough samples to add a full last sinus.
|
324
|
+
|
325
|
+
uint16_t samples_wish = this->samples_count_;
|
288
326
|
this->samples_per_wave_ = (this->sample_rate_ << 10) / this->output_freq_;
|
289
327
|
|
290
|
-
// make sure there is enough samples to add a full last sinus.
|
291
328
|
uint16_t division = ((this->samples_count_ << 10) / this->samples_per_wave_) + 1;
|
292
|
-
|
329
|
+
|
293
330
|
this->samples_count_ = (division * this->samples_per_wave_);
|
294
|
-
ESP_LOGD(TAG, "play time old: %d div: %d new: %d %d", x, division, this->samples_count_, this->samples_per_wave_);
|
295
331
|
this->samples_count_ = this->samples_count_ >> 10;
|
332
|
+
ESP_LOGVV(TAG, "- Calc play time: wish: %d gets: %d (div: %d spw: %d)", samples_wish, this->samples_count_,
|
333
|
+
division, this->samples_per_wave_);
|
296
334
|
}
|
297
335
|
// Convert from frequency in Hz to high and low samples in fixed point
|
298
336
|
}
|
@@ -301,5 +339,54 @@ void Rtttl::loop() {
|
|
301
339
|
this->last_note_ = millis();
|
302
340
|
}
|
303
341
|
|
342
|
+
void Rtttl::finish_() {
|
343
|
+
#ifdef USE_OUTPUT
|
344
|
+
if (this->output_ != nullptr) {
|
345
|
+
this->output_->set_level(0.0);
|
346
|
+
this->set_state_(State::STATE_STOPPED);
|
347
|
+
}
|
348
|
+
#endif
|
349
|
+
#ifdef USE_SPEAKER
|
350
|
+
if (this->speaker_ != nullptr) {
|
351
|
+
SpeakerSample sample[2];
|
352
|
+
sample[0].left = 0;
|
353
|
+
sample[0].right = 0;
|
354
|
+
sample[1].left = 0;
|
355
|
+
sample[1].right = 0;
|
356
|
+
this->speaker_->play((uint8_t *) (&sample), 8);
|
357
|
+
|
358
|
+
this->speaker_->finish();
|
359
|
+
this->set_state_(State::STATE_STOPPING);
|
360
|
+
}
|
361
|
+
#endif
|
362
|
+
this->note_duration_ = 0;
|
363
|
+
this->on_finished_playback_callback_.call();
|
364
|
+
ESP_LOGD(TAG, "Playback finished");
|
365
|
+
}
|
366
|
+
|
367
|
+
static const LogString *state_to_string(State state) {
|
368
|
+
switch (state) {
|
369
|
+
case STATE_STOPPED:
|
370
|
+
return LOG_STR("STATE_STOPPED");
|
371
|
+
case STATE_STARTING:
|
372
|
+
return LOG_STR("STATE_STARTING");
|
373
|
+
case STATE_RUNNING:
|
374
|
+
return LOG_STR("STATE_RUNNING");
|
375
|
+
case STATE_STOPPING:
|
376
|
+
return LOG_STR("STATE_STOPPING");
|
377
|
+
case STATE_INIT:
|
378
|
+
return LOG_STR("STATE_INIT");
|
379
|
+
default:
|
380
|
+
return LOG_STR("UNKNOWN");
|
381
|
+
}
|
382
|
+
};
|
383
|
+
|
384
|
+
void Rtttl::set_state_(State state) {
|
385
|
+
State old_state = this->state_;
|
386
|
+
this->state_ = state;
|
387
|
+
ESP_LOGD(TAG, "State changed from %s to %s", LOG_STR_ARG(state_to_string(old_state)),
|
388
|
+
LOG_STR_ARG(state_to_string(state)));
|
389
|
+
}
|
390
|
+
|
304
391
|
} // namespace rtttl
|
305
392
|
} // namespace esphome
|
esphome/components/rtttl/rtttl.h
CHANGED
@@ -14,12 +14,20 @@
|
|
14
14
|
namespace esphome {
|
15
15
|
namespace rtttl {
|
16
16
|
|
17
|
+
enum State : uint8_t {
|
18
|
+
STATE_STOPPED = 0,
|
19
|
+
STATE_INIT,
|
20
|
+
STATE_STARTING,
|
21
|
+
STATE_RUNNING,
|
22
|
+
STATE_STOPPING,
|
23
|
+
};
|
24
|
+
|
17
25
|
#ifdef USE_SPEAKER
|
18
|
-
static const size_t SAMPLE_BUFFER_SIZE =
|
26
|
+
static const size_t SAMPLE_BUFFER_SIZE = 2048;
|
19
27
|
|
20
28
|
struct SpeakerSample {
|
21
|
-
|
22
|
-
|
29
|
+
int8_t left{0};
|
30
|
+
int8_t right{0};
|
23
31
|
};
|
24
32
|
#endif
|
25
33
|
|
@@ -42,7 +50,7 @@ class Rtttl : public Component {
|
|
42
50
|
void stop();
|
43
51
|
void dump_config() override;
|
44
52
|
|
45
|
-
bool is_playing() { return this->
|
53
|
+
bool is_playing() { return this->state_ != State::STATE_STOPPED; }
|
46
54
|
void loop() override;
|
47
55
|
|
48
56
|
void add_on_finished_playback_callback(std::function<void()> callback) {
|
@@ -57,6 +65,8 @@ class Rtttl : public Component {
|
|
57
65
|
}
|
58
66
|
return ret;
|
59
67
|
}
|
68
|
+
void finish_();
|
69
|
+
void set_state_(State state);
|
60
70
|
|
61
71
|
std::string rtttl_{""};
|
62
72
|
size_t position_{0};
|
@@ -68,13 +78,12 @@ class Rtttl : public Component {
|
|
68
78
|
|
69
79
|
uint32_t output_freq_;
|
70
80
|
float gain_{0.6f};
|
81
|
+
State state_{State::STATE_STOPPED};
|
71
82
|
|
72
83
|
#ifdef USE_OUTPUT
|
73
84
|
output::FloatOutput *output_;
|
74
85
|
#endif
|
75
86
|
|
76
|
-
void play_output_();
|
77
|
-
|
78
87
|
#ifdef USE_SPEAKER
|
79
88
|
speaker::Speaker *speaker_{nullptr};
|
80
89
|
int sample_rate_{16000};
|
@@ -1,20 +1,20 @@
|
|
1
|
-
import esphome.codegen as cg
|
2
|
-
import esphome.config_validation as cv
|
3
1
|
from esphome import automation
|
2
|
+
import esphome.codegen as cg
|
4
3
|
from esphome.components import mqtt, web_server
|
4
|
+
import esphome.config_validation as cv
|
5
5
|
from esphome.const import (
|
6
|
+
CONF_CYCLE,
|
6
7
|
CONF_ENTITY_CATEGORY,
|
7
8
|
CONF_ICON,
|
8
9
|
CONF_ID,
|
10
|
+
CONF_INDEX,
|
11
|
+
CONF_MODE,
|
12
|
+
CONF_MQTT_ID,
|
9
13
|
CONF_ON_VALUE,
|
14
|
+
CONF_OPERATION,
|
10
15
|
CONF_OPTION,
|
11
16
|
CONF_TRIGGER_ID,
|
12
|
-
CONF_MQTT_ID,
|
13
17
|
CONF_WEB_SERVER_ID,
|
14
|
-
CONF_CYCLE,
|
15
|
-
CONF_MODE,
|
16
|
-
CONF_OPERATION,
|
17
|
-
CONF_INDEX,
|
18
18
|
)
|
19
19
|
from esphome.core import CORE, coroutine_with_priority
|
20
20
|
from esphome.cpp_generator import MockObjClass
|
@@ -1,22 +1,28 @@
|
|
1
1
|
import math
|
2
2
|
|
3
|
-
import esphome.codegen as cg
|
4
|
-
import esphome.config_validation as cv
|
5
3
|
from esphome import automation
|
4
|
+
import esphome.codegen as cg
|
6
5
|
from esphome.components import mqtt, web_server
|
6
|
+
import esphome.config_validation as cv
|
7
7
|
from esphome.const import (
|
8
|
-
CONF_DEVICE_CLASS,
|
9
8
|
CONF_ABOVE,
|
10
9
|
CONF_ACCURACY_DECIMALS,
|
11
10
|
CONF_ALPHA,
|
12
11
|
CONF_BELOW,
|
12
|
+
CONF_DEVICE_CLASS,
|
13
13
|
CONF_ENTITY_CATEGORY,
|
14
14
|
CONF_EXPIRE_AFTER,
|
15
15
|
CONF_FILTERS,
|
16
|
+
CONF_FORCE_UPDATE,
|
16
17
|
CONF_FROM,
|
17
18
|
CONF_ICON,
|
18
19
|
CONF_ID,
|
19
20
|
CONF_IGNORE_OUT_OF_RANGE,
|
21
|
+
CONF_MAX_VALUE,
|
22
|
+
CONF_METHOD,
|
23
|
+
CONF_MIN_VALUE,
|
24
|
+
CONF_MQTT_ID,
|
25
|
+
CONF_MULTIPLE,
|
20
26
|
CONF_ON_RAW_VALUE,
|
21
27
|
CONF_ON_VALUE,
|
22
28
|
CONF_ON_VALUE_RANGE,
|
@@ -29,14 +35,9 @@ from esphome.const import (
|
|
29
35
|
CONF_TRIGGER_ID,
|
30
36
|
CONF_TYPE,
|
31
37
|
CONF_UNIT_OF_MEASUREMENT,
|
32
|
-
CONF_WINDOW_SIZE,
|
33
|
-
CONF_MQTT_ID,
|
34
|
-
CONF_WEB_SERVER_ID,
|
35
|
-
CONF_FORCE_UPDATE,
|
36
38
|
CONF_VALUE,
|
37
|
-
|
38
|
-
|
39
|
-
CONF_METHOD,
|
39
|
+
CONF_WEB_SERVER_ID,
|
40
|
+
CONF_WINDOW_SIZE,
|
40
41
|
DEVICE_CLASS_APPARENT_POWER,
|
41
42
|
DEVICE_CLASS_AQI,
|
42
43
|
DEVICE_CLASS_ATMOSPHERIC_PRESSURE,
|
@@ -249,6 +250,7 @@ CalibratePolynomialFilter = sensor_ns.class_("CalibratePolynomialFilter", Filter
|
|
249
250
|
SensorInRangeCondition = sensor_ns.class_("SensorInRangeCondition", Filter)
|
250
251
|
ClampFilter = sensor_ns.class_("ClampFilter", Filter)
|
251
252
|
RoundFilter = sensor_ns.class_("RoundFilter", Filter)
|
253
|
+
RoundMultipleFilter = sensor_ns.class_("RoundMultipleFilter", Filter)
|
252
254
|
|
253
255
|
validate_unit_of_measurement = cv.string_strict
|
254
256
|
validate_accuracy_decimals = cv.int_
|
@@ -734,6 +736,23 @@ async def round_filter_to_code(config, filter_id):
|
|
734
736
|
)
|
735
737
|
|
736
738
|
|
739
|
+
@FILTER_REGISTRY.register(
|
740
|
+
"round_to_multiple_of",
|
741
|
+
RoundMultipleFilter,
|
742
|
+
cv.maybe_simple_value(
|
743
|
+
{
|
744
|
+
cv.Required(CONF_MULTIPLE): cv.positive_not_null_float,
|
745
|
+
},
|
746
|
+
key=CONF_MULTIPLE,
|
747
|
+
),
|
748
|
+
)
|
749
|
+
async def round_multiple_filter_to_code(config, filter_id):
|
750
|
+
return cg.new_Pvariable(
|
751
|
+
filter_id,
|
752
|
+
config[CONF_MULTIPLE],
|
753
|
+
)
|
754
|
+
|
755
|
+
|
737
756
|
async def build_filters(config):
|
738
757
|
return await cg.build_registry_list(FILTER_REGISTRY, config)
|
739
758
|
|
@@ -472,5 +472,13 @@ optional<float> RoundFilter::new_value(float value) {
|
|
472
472
|
return value;
|
473
473
|
}
|
474
474
|
|
475
|
+
RoundMultipleFilter::RoundMultipleFilter(float multiple) : multiple_(multiple) {}
|
476
|
+
optional<float> RoundMultipleFilter::new_value(float value) {
|
477
|
+
if (std::isfinite(value)) {
|
478
|
+
return value - remainderf(value, this->multiple_);
|
479
|
+
}
|
480
|
+
return value;
|
481
|
+
}
|
482
|
+
|
475
483
|
} // namespace sensor
|
476
484
|
} // namespace esphome
|
@@ -431,5 +431,14 @@ class RoundFilter : public Filter {
|
|
431
431
|
uint8_t precision_;
|
432
432
|
};
|
433
433
|
|
434
|
+
class RoundMultipleFilter : public Filter {
|
435
|
+
public:
|
436
|
+
explicit RoundMultipleFilter(float multiple);
|
437
|
+
optional<float> new_value(float value) override;
|
438
|
+
|
439
|
+
protected:
|
440
|
+
float multiple_;
|
441
|
+
};
|
442
|
+
|
434
443
|
} // namespace sensor
|
435
444
|
} // namespace esphome
|