esphome-device-builder 0.1.0b10__tar.gz
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_device_builder-0.1.0b10/LICENSE +176 -0
- esphome_device_builder-0.1.0b10/MANIFEST.in +4 -0
- esphome_device_builder-0.1.0b10/PKG-INFO +133 -0
- esphome_device_builder-0.1.0b10/README.md +89 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/__init__.py +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/__main__.py +175 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/api/__init__.py +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/api/legacy.py +166 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/api/ws.py +421 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/constants.py +11 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/__init__.py +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/_device_mqtt_coordinator.py +225 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/_device_mqtt_monitor.py +273 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/_device_scanner.py +386 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/_device_state_monitor.py +1033 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/_dns_cache.py +153 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/auth.py +110 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/automations.py +270 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/boards.py +171 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/components.py +735 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/config.py +506 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/devices/__init__.py +21 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/devices/constants.py +35 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/devices/controller.py +1912 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/devices/helpers.py +374 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/editor.py +223 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/firmware/__init__.py +18 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/firmware/constants.py +137 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/firmware/controller.py +1416 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/controllers/firmware/helpers.py +300 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/README.md +230 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/__init__.py +275 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/bk72xx.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32c2.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32c3.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32c5.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32c6.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32c61.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32h2.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32p4.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32s2.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp32s3.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/esp8266.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/host.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/ln882x.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/nrf52.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/rp2040.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/_generic/rtl87xx.svg +54 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/acenx_sop04_us/manifest.yaml +84 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ads_wsm_1a/manifest.yaml +43 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/agl_2_3_gang_switch/manifest.yaml +86 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ahrise_ahr_083/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/alfawise_sj_7/manifest.yaml +33 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/anwio_a19_e26_rgbww_8_5w_light_bulb/manifest.yaml +69 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/anwio_br30_e26_rgb_cct_13w_light_bulb/manifest.yaml +41 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aoycocr_x13_outdoor_plug_2akbp_x13/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/apollo-esk-1/manifest.yaml +182 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/apollo-esp32-c6/images/apollo.svg +11 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/apollo-esp32-c6/manifest.yaml +214 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/apollo-esp32-s3/images/apollo.svg +11 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/apollo-esp32-s3/manifest.yaml +345 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aquaping/manifest.yaml +33 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arduino_nano_esp32/manifest.yaml +347 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_fl052ha_security_flood_light/manifest.yaml +46 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_grid_connect_smart_9w_cct_led_downlight/manifest.yaml +57 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_grid_connect_smart_ceiling_fan_dcf4002/manifest.yaml +44 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_grid_connect_smart_led_9w_92mm_rgbcct_ald295ha/manifest.yaml +85 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_grid_connect_smart_led_globe_cwww/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_grid_connect_socket_usb_chg/manifest.yaml +76 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_gridconnect_smart_plug_pc190ha/manifest.yaml +76 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_pc189ha_plug/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_pc191ha_plug/manifest.yaml +52 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_pc399ha_plug/manifest.yaml +90 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/arlec_smart_5m_led_strip_light/manifest.yaml +79 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aspen_asp_200_smart_window_fan/manifest.yaml +55 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom-smart-plug-v3/manifest.yaml +146 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_ar01_ir_controller/manifest.yaml +79 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_br30_bulb/manifest.yaml +97 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_e27_15w_bulb/manifest.yaml +97 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_e27_7w_bulb/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_gu10_bulb/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_human_presence_sensor/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_smart_plug_au/manifest.yaml +95 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_smart_plug_pg01v2_eu16a/manifest.yaml +71 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_smart_plug_pg03_us16a/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_smart_plug_pg05v2_au10a/manifest.yaml +78 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/athom_smart_plug_tp29/manifest.yaml +103 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aubess_mini_smart_switch_cb2s_v_2022/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aubess_wifi_smart_switch/manifest.yaml +25 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aubess_wifi_smart_switch_with_power_monitoring/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/aukey_sh_pa1_smart_plug/manifest.yaml +80 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/avatto_s06_ir_remote_no_temp_no_humidity_new_version/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/avatto_s06pro_ir_remote/manifest.yaml +64 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/avatto_tuya_wifi_smart_switch/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/avita_domus_as_sb_10w_5c_rgbcct_10_watt_light_bulb/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/awow_eu3s_power_monitoring_plug/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/awp02l2/manifest.yaml +67 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/azpen_home_with_usb/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/b1295_smart_surface_mounted_ceiling_light_cct/manifest.yaml +60 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/bauhn_5_way_powerboard/manifest.yaml +61 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/bauhn_aspu_1019_plug/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/beca_thermostat/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bh_ap2501/manifest.yaml +102 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bw_shp2_power_monitoring_plug/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bw_shp6/manifest.yaml +89 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bw_shp7/manifest.yaml +147 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bw_shp8_power_monitoring_wall_outlet/manifest.yaml +104 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/blitzwolf_bw_shp9/manifest.yaml +97 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/brilliant_lighting_bl20925_power_monitoring_plug/manifest.yaml +112 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/brilliant_smart_20696_cct_light/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/brilliant_smart_cct_globe_gu10/manifest.yaml +57 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/brilliant_smart_wi_fi_rgb_garden_light/manifest.yaml +67 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/citilab_ed1/manifest.yaml +125 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/cloudfree_cf_p1/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/cloudfree_eu_plug_p1eu/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/cocoon_dy180363_rgbw_8w_bulb/manifest.yaml +81 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/connect_smarthome_10w_cct_bulb_csh_b22ww10w/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/connect_smarthome_10w_cct_bulb_csh_e27ww10w/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/connected_consumer_fuel_smart_oil_gauge/manifest.yaml +131 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/currysmarter_16a_v1_1_plug/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/d1-mini/manifest.yaml +130 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/d1-mini-pro/manifest.yaml +133 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/delock_11826_power_plug/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/delock_11827_power_monitoring_plug/manifest.yaml +85 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/denver_shp_102/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/deta_10w_940lm_grid_connect_smart_led_downlight/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/deta_grid_connect_two_gang_two_way_6952ha/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/deta_mechanism_switch_6014ha/manifest.yaml +84 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/duux_whisper_flex_smart_fan_dxcf10/manifest.yaml +64 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/duux_whisper_flex_uitimate_smart_fan_dxcf14/manifest.yaml +69 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/earu_ea777/manifest.yaml +292 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ekf_rcs_2_wf/manifest.yaml +48 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/electriq_iqoolsmart12hp_air_conditioner/manifest.yaml +68 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/elegrp_rrr00_in_wall_outlet/manifest.yaml +99 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/energizer_smart_plug/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/es32a08/manifest.yaml +525 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp01/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c3-devkitc-02/manifest.yaml +164 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c3-devkitm-1/manifest.yaml +162 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c3-supermini/manifest.yaml +161 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c5-devkitc-1/manifest.yaml +205 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c6-devkitc-1/manifest.yaml +213 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c6-devkitm-1/manifest.yaml +212 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-c61-devkitc1/manifest.yaml +206 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-devkit-v1/manifest.yaml +237 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-evb/manifest.yaml +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-gateway/manifest.yaml +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-pico-devkitm-2/manifest.yaml +266 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-poe-iso/manifest.yaml +270 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-s2-kaluga-1/manifest.yaml +318 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-s2-mini/manifest.yaml +315 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-s3-devkitc-1/manifest.yaml +346 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32-s3-devkitm-1/manifest.yaml +349 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_multiboard/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_relay_x1/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_relay_x16/manifest.yaml +232 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_relay_x2/manifest.yaml +68 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_relay_x4/manifest.yaml +71 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_relay_x4_modbus_v1_3/manifest.yaml +158 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_s3_4_0_inch_smart_display/manifest.yaml +111 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32_smartplug_rowi_au/manifest.yaml +106 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32cam/manifest.yaml +267 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32doit-devkit-v1/manifest.yaml +268 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32e_relay_x8/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32s3_1_8_inch_jc3636k518c/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32thing/manifest.yaml +268 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp32thing_plus/manifest.yaml +267 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp8285/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp_01s_1_channel_relay/manifest.yaml +42 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp_12f_relay_x1/manifest.yaml +33 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp_12f_relay_x2/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/esp_12f_relay_x8/manifest.yaml +124 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/espbell_lite/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ettroit_esr35xx/manifest.yaml +46 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ewelink_5v_12v_inching_relay/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ewelink_sant_sud01/manifest.yaml +52 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ezaiot_xyzoo_thermostat/manifest.yaml +43 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/feit_dimsmart_3_can/manifest.yaml +77 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/frankever_fk_pw801us/manifest.yaml +61 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/freenove-esp32-s3-n8r8/manifest.yaml +347 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/geekbes_ym_ws_1/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/geeni_4_outlet_surge_strip/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/geeni_6w8007_smart_wi_fi_outlet/manifest.yaml +40 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/geeni_outdoor_duo/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gelidus_research_energy_collector_1/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gelidus_research_garage_door_opener_1/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gelidus_research_presence_sensor_1/manifest.yaml +35 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-bk7231n-qfn32-tuya/manifest.yaml +14 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-bk7231t-qfn32-tuya/manifest.yaml +14 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-bk7252/manifest.yaml +14 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32/manifest.yaml +264 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32c2/manifest.yaml +149 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32c3/manifest.yaml +159 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32c5/manifest.yaml +205 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32c6/manifest.yaml +205 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32c61/manifest.yaml +204 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32h2/manifest.yaml +191 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32p4/manifest.yaml +362 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32s2/manifest.yaml +314 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp32s3/manifest.yaml +344 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-esp8266/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-ln882hki/manifest.yaml +14 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-rp2040/manifest.yaml +188 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic-rtl8710bn-2mb-788k/manifest.yaml +14 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic_2ch_wifi_curtain_module/manifest.yaml +96 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic_chinese_brand_wifi_smart_power_strip/manifest.yaml +154 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic_rp2350/manifest.yaml +192 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/generic_usb_wifi_switch/manifest.yaml +92 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/genvex_nibe_alphainnotec_heat_recovery_ventilation/manifest.yaml +503 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gl_inet_gl_s10/manifest.yaml +81 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/globe_edison_bulb_34873/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/globe_electric_wi_fi_smart_plug_50329/manifest.yaml +42 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/goldair_gpoc2415_smart_heater/manifest.yaml +97 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_sl2/manifest.yaml +94 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_sp111/manifest.yaml +120 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_sw5/manifest.yaml +68 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_sw6/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_sw9/manifest.yaml +120 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_wo1/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/gosund_wp6/manifest.yaml +67 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/govee_h601a_6in_recessed_rgbcct_light/manifest.yaml +68 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/govee_h6086_e27_5w_500lm_rgbcct_bulb/manifest.yaml +110 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/guition_esp32_s3_4848s040/manifest.yaml +150 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/guition_jc4827543c/manifest.yaml +69 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/h801_rgbw_led_controller/manifest.yaml +100 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/hama_wlan_power_strip_00176574/manifest.yaml +105 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/hankerila_ea8/manifest.yaml +279 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/havells_glamax_9w_b22_wifi_led_rgb_cct_bulb/manifest.yaml +75 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/hegg_dongle/manifest.yaml +75 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/heltec_wifi_lora_32_V3/manifest.yaml +349 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/hiking_dds238_1_w1/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/hiking_dds238_2_wifi/manifest.yaml +82 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/holman_4x34mm_spotlight/manifest.yaml +28 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/holman_rgb_wifi/manifest.yaml +94 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/homemaster_microplc/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/homemaster_miniplc/manifest.yaml +319 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/homemate_4_gang_touch_switch/manifest.yaml +87 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/horus_blind_controller/manifest.yaml +85 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/iot_devices_ggreg20_v3/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/jdong_x6060_lamp/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/jeeo_tf_sh330/manifest.yaml +81 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_a24/manifest.yaml +775 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_a32pro/manifest.yaml +1069 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_adr/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_ag8/manifest.yaml +94 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_aio/manifest.yaml +422 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_as/manifest.yaml +39 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_atf/manifest.yaml +257 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b16/manifest.yaml +583 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b16m/manifest.yaml +573 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b24/manifest.yaml +774 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b24m/manifest.yaml +774 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b32m/manifest.yaml +965 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b4/manifest.yaml +278 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b4m/manifest.yaml +278 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b8/manifest.yaml +390 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_b8m/manifest.yaml +391 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_dm16/manifest.yaml +392 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_dm32/manifest.yaml +761 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_dm4/manifest.yaml +289 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_dm8/manifest.yaml +314 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_e16p/manifest.yaml +432 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_f16/manifest.yaml +582 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_f24/manifest.yaml +775 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_f32/manifest.yaml +965 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_f4/manifest.yaml +274 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_f8/manifest.yaml +391 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a128/manifest.yaml +3144 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a16/manifest.yaml +472 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a16s/manifest.yaml +432 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a16v3/manifest.yaml +565 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a256/manifest.yaml +6680 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a2v3/manifest.yaml +165 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a32/manifest.yaml +868 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a32m/manifest.yaml +484 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a4/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a6/manifest.yaml +187 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a64/manifest.yaml +1660 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a6v3/manifest.yaml +306 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a8m/manifest.yaml +240 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a8s/manifest.yaml +252 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_a8v3/manifest.yaml +353 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_ai/manifest.yaml +622 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_aio/manifest.yaml +1717 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_ak/manifest.yaml +478 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_ap/manifest.yaml +564 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_e16p/manifest.yaml +433 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_e16s/manifest.yaml +432 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_e16t/manifest.yaml +432 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_e8t/manifest.yaml +252 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_m16/manifest.yaml +476 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_kc868_uair/manifest.yaml +64 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_m1/manifest.yaml +50 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_m30/manifest.yaml +1117 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_mb/manifest.yaml +166 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_n10/manifest.yaml +407 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_n20/manifest.yaml +792 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_n30/manifest.yaml +1177 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_n60/manifest.yaml +2332 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_t128m/manifest.yaml +3276 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_t16m/manifest.yaml +548 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_t32m/manifest.yaml +972 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_t64m/manifest.yaml +1740 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kincony_ta/manifest.yaml +393 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kmc_smart_tap/manifest.yaml +103 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kmp_prodino_esp32ex/manifest.yaml +179 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/knightsbridge_cu9kw/manifest.yaml +154 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_rgb_cool_warm_white_2m_led_strip/manifest.yaml +107 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_smart_air_purifier_2s/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_smarterhome_bladeless_dc_motor_turbo_smart_fan/manifest.yaml +28 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_smarterhome_smart_plug_energy_meter_5v_24a_usb_ports/manifest.yaml +100 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_smarterhome_smart_plug_with_energy_meter/manifest.yaml +99 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/kogan_smarterhome_smart_power_board_with_usb_ports_energy_meter/manifest.yaml +133 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ktnnkg_wifi_kg2201_w/manifest.yaml +64 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lanbon_l8/manifest.yaml +122 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lanbon_l9/manifest.yaml +89 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledds/manifest.yaml +138 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledenet_smart_wifi_rgb_ww_cw/manifest.yaml +103 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledkia_led_cord_dimmer_switch/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledlumen_sp_03/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledvance_e27_rgbw/manifest.yaml +25 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledvance_smart_plus_plug_ch/manifest.yaml +36 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledvance_smart_plus_plug_eu/manifest.yaml +51 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledvance_smart_table_frame_multicolor/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ledvance_smart_wifi_b40_5w_rgbw_e14/manifest.yaml +67 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lenovo_800lm_rgbcct_bulb/manifest.yaml +95 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/levoit_core_300s/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilka/manifest.yaml +163 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilygo-t-display-s3/manifest.yaml +345 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilygo-t-energy-s3/manifest.yaml +347 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilygo_tdisplay_s3/manifest.yaml +75 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilygo_tdisplay_s3_touch/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lilygo_tdongle_s3/manifest.yaml +102 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/linknode_r4/manifest.yaml +66 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/loetad_eu3s_power_monitoring_plug/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lolin32/manifest.yaml +267 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lolin_c3_mini/manifest.yaml +165 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lolin_d32_pro/manifest.yaml +270 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lolin_s3_mini/manifest.yaml +348 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/loratap_sc411wsc_curtainswitch/manifest.yaml +51 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/loratap_sc500w/manifest.yaml +107 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/loratap_sc511wsc/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_battletron_desk_strip_3_meter_3206528/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_plug_with_monitoring/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_rgbw_led_strip/manifest.yaml +130 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_smart_connect_1500lm_22w_ceiling_lamp/manifest.yaml +36 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_smart_connect_xxl_led_stripe_10meter/manifest.yaml +51 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsc_smart_connect_xxl_led_stripe_10meter_v1_1/manifest.yaml +53 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lsps5_tuya_1_2_3_gang_switch/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/lutec_origo/manifest.yaml +103 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-atom-lite/manifest.yaml +264 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-atoms3/manifest.yaml +345 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-atoms3u/manifest.yaml +346 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-core-esp32/manifest.yaml +270 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-core2/manifest.yaml +273 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-coreink/manifest.yaml +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-cores3/manifest.yaml +352 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-fire/manifest.yaml +272 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack-stamps3/manifest.yaml +346 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_airq/manifest.yaml +128 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_core2/manifest.yaml +72 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_core2_v1_1/manifest.yaml +72 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_dial/manifest.yaml +126 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_m5stickc_plus/manifest.yaml +101 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stack_m5stickc_plus2/manifest.yaml +131 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/m5stick-c/manifest.yaml +271 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/magichome_zj_wfmn_a_rgbw/manifest.yaml +78 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/magichome_zj_wfmn_c_single_color/manifest.yaml +42 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/makerfabs_8ch_button_controller/manifest.yaml +111 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/makerfabs_8ch_relay/manifest.yaml +137 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/makerfabs_ac_dimmer/manifest.yaml +28 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/makerfabs_dc_motor/manifest.yaml +87 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/makerfabs_weater_station/manifest.yaml +60 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/maltec_dh_20000a_dehumidifier/manifest.yaml +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/martin_jerry_rp_fc01/manifest.yaml +39 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/martin_jerry_rp_sd01/manifest.yaml +104 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/martin_jerry_std01/manifest.yaml +36 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/martinjerry_usfc01/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/maxcio_rmc020/manifest.yaml +99 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mi_desklamp/manifest.yaml +96 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mi_desklamp_pro/manifest.yaml +111 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mi_smart_led_bulb/manifest.yaml +83 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/miboxer_tri_c1wr_dimmer/manifest.yaml +68 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/miboxer_wl5_led_controller/manifest.yaml +42 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/milfra_smart_dimmer_switch/manifest.yaml +44 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/minoston_outdoor_smart_plug_mp22w/manifest.yaml +40 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mirabella_door_window_sensor/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mirabella_genio_wi_fi_500_led_mulitcoloured_fairy_lights/manifest.yaml +90 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mirabella_genio_wi_fi_ses_led_candle/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mirabella_genio_wifi_led_strip_light/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/moes_edm_03aa_eu/manifest.yaml +52 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/moes_ir_thermostat_s16pro/manifest.yaml +66 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mq_7/manifest.yaml +70 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/mystrom_wifi_button/manifest.yaml +104 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nexx_nxg_100/manifest.yaml +91 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ningbo_fuda_5250b_dehumidifier/manifest.yaml +103 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nodemcu-32s/manifest.yaml +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nodemcuv2/manifest.yaml +130 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nous_a1t/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nous_a4t/manifest.yaml +102 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nous_a8m/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nous_b3t/manifest.yaml +119 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nous_l1t/manifest.yaml +82 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/nx_sp201_smart_plug/manifest.yaml +104 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/oeegoo_12_inch_30w_smart_ceiling_light_clb035/manifest.yaml +121 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/oxt_wifi_4ch/manifest.yaml +179 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/oyajia_led_ceiling_light_as105/manifest.yaml +36 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/petkit_fresh_element_solo_pet_feeder/manifest.yaml +170 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/prime_ccrcwfio2pk_plug/manifest.yaml +80 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/proficook_pc_wks_1167g_1_5l_kettle_501167/manifest.yaml +62 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/qiachip_smart_switch/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/refoss_p11_plug/manifest.yaml +88 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/rpipico/manifest.yaml +194 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/rpipico2/manifest.yaml +195 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/rsh_wifi_sky01/manifest.yaml +171 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/rztk_smart_led_3_usb_rgb_scw_wb_cb003/manifest.yaml +64 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sanpu_tyz150_w2v24/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/seeed-xiao-esp32c3/manifest.yaml +164 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/seeed-xiao-esp32s3/manifest.yaml +347 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/seeed_xiao_esp32c6/manifest.yaml +216 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/seeed_xiao_rp2040/manifest.yaml +196 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_1/manifest.yaml +57 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_1_gen4/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_bulb_duo_rgbw/manifest.yaml +84 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_em_gen3/manifest.yaml +147 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_ht_gen3/manifest.yaml +95 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_i4_gen3/manifest.yaml +128 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_0_10v_dimmer/manifest.yaml +133 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_1/manifest.yaml +126 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_1_mini/manifest.yaml +114 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_1pm/manifest.yaml +147 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_1pm_mini/manifest.yaml +105 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_2pm/manifest.yaml +167 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_i4/manifest.yaml +88 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_plus_rgbw_pm/manifest.yaml +215 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_power_strip_4_gen4/manifest.yaml +187 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_pro_2/manifest.yaml +213 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_pro_em_50/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_pro_rgbww_pm/manifest.yaml +219 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_rgbw2/manifest.yaml +84 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_the_pill/manifest.yaml +75 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_uni/manifest.yaml +146 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/shelly_vintage_a19/manifest.yaml +44 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sinilink_xy_vfms/manifest.yaml +63 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sinilink_xy_wfusb_usb_switch_relay/manifest.yaml +69 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sinilink_xy_wpce/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sinvitron_a19_900lm_rgbcw/manifest.yaml +109 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/smart_plant/manifest.yaml +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/smart_powermeter/manifest.yaml +213 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/smartpoint_wifi_smart_remote_controller/manifest.yaml +35 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff-basic/manifest.yaml +191 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_basic_r2_v1_4/manifest.yaml +66 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_basic_r4_v1_0/manifest.yaml +57 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_dual_diy_light/manifest.yaml +55 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_dual_r2/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_dual_r3/manifest.yaml +118 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_m5/manifest.yaml +135 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_mini_relay/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_minir4_extreme/manifest.yaml +82 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_minir4m/manifest.yaml +88 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_pow_r1/manifest.yaml +96 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_pow_r2/manifest.yaml +48 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_powr316_16a/manifest.yaml +100 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_s60tpf/manifest.yaml +53 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_sv/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sonoff_thr316/manifest.yaml +133 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sparkfun_esp32s2_thing_plus/manifest.yaml +317 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/steren_rgbww_desk_lamp/manifest.yaml +30 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/strong_helo_plusb/manifest.yaml +124 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/sunton_esp32_8048s043c/manifest.yaml +48 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/supernight_double_outlet_plug/manifest.yaml +95 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/szmdlx_ir_hub/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tantan_wp3/manifest.yaml +71 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tapo_l900_5eu/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/teckin_ss42/manifest.yaml +94 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tekkar_gen3_curtainswitch/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tenstar_robot_esp32_s3_supermini/manifest.yaml +39 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tesla_edm_01aa_eu/manifest.yaml +53 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/texxmo_iot_button/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tinxy_1n_16a_relay/manifest.yaml +61 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tinxy_4n_fan_regulator/manifest.yaml +41 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tinypico/manifest.yaml +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tomzn_tob9_vap/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tomzn_tompd_63_wifi/manifest.yaml +44 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tongou_to_q_sys_jwt_power_meter/manifest.yaml +279 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/topeler_ysw102_wall_outlet/manifest.yaml +45 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/topgreener_tgwf500d/manifest.yaml +34 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/treatlife_ds01c/manifest.yaml +34 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/treatlife_ds02f/manifest.yaml +27 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/treatlife_ds02s/manifest.yaml +34 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ttgo-lora32-v21/manifest.yaml +268 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ttgo-t-beam/manifest.yaml +268 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_2_gang_switch_socket/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_ap_future_cct/manifest.yaml +56 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_ceiling_light/manifest.yaml +82 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_dy_ck400a_garage_door_opener/manifest.yaml +33 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_dy_rq400a_combustible_gas_alarm/manifest.yaml +90 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_generic_irc03_ir_blaster/manifest.yaml +58 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_generic_s09_temperature_humidity_clock_ir/manifest.yaml +73 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_generic_s11_ir_rf_remote_control/manifest.yaml +32 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_mini_w1_4ch/manifest.yaml +194 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_plug_16a_il/manifest.yaml +49 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_plug_20a/manifest.yaml +40 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_plug_20a_eu_bl0942/manifest.yaml +30 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_plug_20a_whdz03/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_star_projector_sk20/manifest.yaml +127 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_smart_weather_station/manifest.yaml +175 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_t3e_esp32_s3/manifest.yaml +161 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_usb_hc_s050_wifi/manifest.yaml +35 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_wb5_wifi_5in1_led_controller/manifest.yaml +38 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_wifi_mini_sensor_pir_motion_alarm/manifest.yaml +48 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_wifi_smart_switch_sb2s/manifest.yaml +29 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_wifi_sprinkler_controller/manifest.yaml +237 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_zy_hps01_human_presence_sensor/manifest.yaml +118 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/tuya_zy_m100_human_presence_sensor/manifest.yaml +134 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ultrapro_wfd1001_wall_outlet/manifest.yaml +37 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/ultrapro_wfd4001_light_switch/manifest.yaml +33 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/umax_u_smart_wifi_plug_duo/manifest.yaml +119 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/unexpectedmaker_feathers3d/manifest.yaml +76 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/usr_eg118/manifest.yaml +98 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_6ch_relay/manifest.yaml +162 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_epaper_cloud_module/manifest.yaml +55 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_esp32_s3_eth_8di_8do/manifest.yaml +307 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_esp32_s3_eth_8di_8ro/manifest.yaml +312 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_esp32_s3_touch_amoled_1_75/manifest.yaml +41 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_esp32_s3_zero/manifest.yaml +346 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/waveshare_rp2040_zero/manifest.yaml +194 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wion_50050_indoor_wifi_plug/manifest.yaml +47 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wipro_20w_led_rgb_batten_light_ds22000/manifest.yaml +110 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wipro_next_20w_smart_cct_batten/manifest.yaml +59 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wt32-eth01/manifest.yaml +263 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wyze_bulb_color/manifest.yaml +92 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/wyze_light_strip_pro_wlpstpr_10/manifest.yaml +74 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/xiangshang_xs_ssa05/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/xiaomi_gateway_3/manifest.yaml +93 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/xiaomi_philips_zhirui_downlight/manifest.yaml +57 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/xtendlan_ip66_dual/manifest.yaml +85 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/yagala_sm_so301/manifest.yaml +132 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/zemismart_bulb_br30/manifest.yaml +65 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/zemismart_moonlamp/manifest.yaml +96 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/zemismart_switch_tb22/manifest.yaml +111 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/boards/zentec_smart_plug/manifest.yaml +66 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/components.json +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/schemas/board.schema.json +312 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/definitions/schemas/component.schema.json +108 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/device_builder.py +562 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/__init__.py +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/api.py +61 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/auth.py +365 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/config_hash.py +107 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/device_yaml.py +607 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/event_bus.py +269 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/hostname.py +20 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/json.py +96 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/process.py +202 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/subprocess.py +95 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/helpers/yaml.py +340 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/__init__.py +9 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/api.py +67 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/boards.py +205 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/common.py +433 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/components.py +154 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/devices.py +115 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/firmware.py +112 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/models/preferences.py +53 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder/py.typed +0 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/PKG-INFO +133 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/SOURCES.txt +625 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/dependency_links.txt +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/entry_points.txt +2 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/not-zip-safe +1 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/requires.txt +22 -0
- esphome_device_builder-0.1.0b10/esphome_device_builder.egg-info/top_level.txt +1 -0
- esphome_device_builder-0.1.0b10/pyproject.toml +170 -0
- esphome_device_builder-0.1.0b10/setup.cfg +4 -0
- esphome_device_builder-0.1.0b10/tests/test_api_key.py +186 -0
- esphome_device_builder-0.1.0b10/tests/test_auth.py +762 -0
- esphome_device_builder-0.1.0b10/tests/test_auth_middleware.py +418 -0
- esphome_device_builder-0.1.0b10/tests/test_automations_controller.py +287 -0
- esphome_device_builder-0.1.0b10/tests/test_components_config_entry_loader.py +112 -0
- esphome_device_builder-0.1.0b10/tests/test_components_integration_docs.py +126 -0
- esphome_device_builder-0.1.0b10/tests/test_config_controller.py +644 -0
- esphome_device_builder-0.1.0b10/tests/test_config_hash.py +198 -0
- esphome_device_builder-0.1.0b10/tests/test_definitions_loader.py +153 -0
- esphome_device_builder-0.1.0b10/tests/test_device_builder_lifecycle.py +292 -0
- esphome_device_builder-0.1.0b10/tests/test_device_index.py +346 -0
- esphome_device_builder-0.1.0b10/tests/test_device_scanner_branches.py +220 -0
- esphome_device_builder-0.1.0b10/tests/test_device_scanner_order.py +337 -0
- esphome_device_builder-0.1.0b10/tests/test_device_state_event.py +60 -0
- esphome_device_builder-0.1.0b10/tests/test_device_yaml.py +671 -0
- esphome_device_builder-0.1.0b10/tests/test_dns_cache.py +658 -0
- esphome_device_builder-0.1.0b10/tests/test_editor_controller.py +747 -0
- esphome_device_builder-0.1.0b10/tests/test_event_bus.py +58 -0
- esphome_device_builder-0.1.0b10/tests/test_executor_pool.py +107 -0
- esphome_device_builder-0.1.0b10/tests/test_featured_components.py +770 -0
- esphome_device_builder-0.1.0b10/tests/test_frontend_routes.py +294 -0
- esphome_device_builder-0.1.0b10/tests/test_ha_addon_failsafe.py +282 -0
- esphome_device_builder-0.1.0b10/tests/test_helpers_api.py +162 -0
- esphome_device_builder-0.1.0b10/tests/test_helpers_json.py +230 -0
- esphome_device_builder-0.1.0b10/tests/test_helpers_process.py +249 -0
- esphome_device_builder-0.1.0b10/tests/test_importable_discovery.py +254 -0
- esphome_device_builder-0.1.0b10/tests/test_mdns_api_encryption.py +157 -0
- esphome_device_builder-0.1.0b10/tests/test_mdns_config_hash.py +222 -0
- esphome_device_builder-0.1.0b10/tests/test_mdns_name_match.py +218 -0
- esphome_device_builder-0.1.0b10/tests/test_mdns_version.py +228 -0
- esphome_device_builder-0.1.0b10/tests/test_mqtt_monitor.py +1194 -0
- esphome_device_builder-0.1.0b10/tests/test_non_api_mdns_resolve.py +350 -0
- esphome_device_builder-0.1.0b10/tests/test_probe_device.py +190 -0
- esphome_device_builder-0.1.0b10/tests/test_resolve_download_component.py +139 -0
- esphome_device_builder-0.1.0b10/tests/test_smoke.py +52 -0
- esphome_device_builder-0.1.0b10/tests/test_state_fanout_duplicate_names.py +184 -0
- esphome_device_builder-0.1.0b10/tests/test_state_monitor_lifecycle.py +1242 -0
- esphome_device_builder-0.1.0b10/tests/test_stream_events.py +477 -0
- esphome_device_builder-0.1.0b10/tests/test_subprocess_helper.py +93 -0
- esphome_device_builder-0.1.0b10/tests/test_subprocess_stream.py +188 -0
- esphome_device_builder-0.1.0b10/tests/test_subscribe_events_cleanup.py +277 -0
- esphome_device_builder-0.1.0b10/tests/test_sync_components_umbrellas.py +131 -0
- esphome_device_builder-0.1.0b10/tests/test_sync_components_unit_extraction.py +264 -0
- esphome_device_builder-0.1.0b10/tests/test_sync_esphome_devices_extract.py +283 -0
- esphome_device_builder-0.1.0b10/tests/test_trusted_domains.py +547 -0
- esphome_device_builder-0.1.0b10/tests/test_validate_featured.py +353 -0
- esphome_device_builder-0.1.0b10/tests/test_websocket_heartbeat.py +106 -0
- esphome_device_builder-0.1.0b10/tests/test_ws_dispatch_backpressure.py +132 -0
- esphome_device_builder-0.1.0b10/tests/test_ws_dispatch_branches.py +216 -0
- esphome_device_builder-0.1.0b10/tests/test_ws_handler_branches.py +237 -0
- esphome_device_builder-0.1.0b10/tests/test_yaml_helpers.py +559 -0
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: esphome-device-builder
|
|
3
|
+
Version: 0.1.0b10
|
|
4
|
+
Summary: ESPHome Device Builder
|
|
5
|
+
Author-email: The ESPHome Authors <esphome@openhomefoundation.org>
|
|
6
|
+
Maintainer-email: Open Home Foundation <esphome@openhomefoundation.org>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Project-URL: Documentation, https://esphome.io
|
|
9
|
+
Project-URL: Homepage, https://esphome.io
|
|
10
|
+
Project-URL: Issues, https://github.com/esphome/device-builder/issues
|
|
11
|
+
Project-URL: Repository, https://github.com/esphome/device-builder
|
|
12
|
+
Platform: any
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Topic :: Home Automation
|
|
20
|
+
Requires-Python: >=3.12
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: esphome-device-builder-frontend==0.1.25
|
|
24
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
25
|
+
Requires-Dist: mashumaro>=3.13
|
|
26
|
+
Requires-Dist: orjson>=3.9.0
|
|
27
|
+
Requires-Dist: pyyaml>=6.0
|
|
28
|
+
Provides-Extra: esphome
|
|
29
|
+
Requires-Dist: esphome>=2024.1.0; extra == "esphome"
|
|
30
|
+
Provides-Extra: test
|
|
31
|
+
Requires-Dist: blockbuster<1.6,>=1.5.5; extra == "test"
|
|
32
|
+
Requires-Dist: codespell==2.4.2; extra == "test"
|
|
33
|
+
Requires-Dist: jsonschema>=4.20.0; extra == "test"
|
|
34
|
+
Requires-Dist: mypy==1.20.2; extra == "test"
|
|
35
|
+
Requires-Dist: pre-commit==4.6.0; extra == "test"
|
|
36
|
+
Requires-Dist: pre-commit-hooks==6.0.0; extra == "test"
|
|
37
|
+
Requires-Dist: pytest==9.0.3; extra == "test"
|
|
38
|
+
Requires-Dist: pytest-aiohttp==1.1.0; extra == "test"
|
|
39
|
+
Requires-Dist: pytest-codspeed==4.5.0; extra == "test"
|
|
40
|
+
Requires-Dist: pytest-cov==7.1.0; extra == "test"
|
|
41
|
+
Requires-Dist: pytest-xdist==3.8.0; extra == "test"
|
|
42
|
+
Requires-Dist: ruff==0.15.12; extra == "test"
|
|
43
|
+
Dynamic: license-file
|
|
44
|
+
|
|
45
|
+
# ESPHome Device Builder Dashboard
|
|
46
|
+
|
|
47
|
+
[](https://codecov.io/gh/esphome/device-builder) [](https://codspeed.io/esphome/device-builder)
|
|
48
|
+
|
|
49
|
+
> **Status:** in active development. Roughly alpha, closing on beta. Issues
|
|
50
|
+
> and feedback welcome — please check existing issues / the
|
|
51
|
+
> [project board](https://github.com/orgs/esphome/projects/7/views/1?filterQuery=project%3A%22device-builder-dashboard%22)
|
|
52
|
+
> first, and join the [Discord channel](https://discord.gg/Rf2jWGVjaK)
|
|
53
|
+
> for live discussion.
|
|
54
|
+
|
|
55
|
+
A new dashboard for [ESPHome](https://github.com/esphome/esphome) — a guided
|
|
56
|
+
interface for composing device configs, exploring components and boards,
|
|
57
|
+
managing automations, and pushing firmware updates.
|
|
58
|
+
|
|
59
|
+
## Try it
|
|
60
|
+
|
|
61
|
+
The dashboard isn't yet wired into the ESPHome container or the Home Assistant
|
|
62
|
+
add-on as an opt-in preview — that's coming soon. In the meantime:
|
|
63
|
+
|
|
64
|
+
**Install from a [GitHub release](https://github.com/esphome/device-builder/releases):**
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
python -m venv .venv && source .venv/bin/activate
|
|
68
|
+
|
|
69
|
+
# Replace <version> with a release tag (X.Y.Z stable, X.Y.ZbN beta).
|
|
70
|
+
pip install "https://github.com/esphome/device-builder/releases/download/<version>/esphome_device_builder-<version>-py3-none-any.whl"
|
|
71
|
+
|
|
72
|
+
esphome-device-builder ~/esphome-configs
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
The server starts on `http://localhost:6052`. Run with `--help` for the
|
|
76
|
+
full flag set. A PyPI release is on the way.
|
|
77
|
+
|
|
78
|
+
**From source** (requires [uv](https://docs.astral.sh/uv/)):
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
git clone https://github.com/esphome/device-builder
|
|
82
|
+
cd device-builder
|
|
83
|
+
script/setup
|
|
84
|
+
source .venv/bin/activate
|
|
85
|
+
esphome-device-builder ./configs --log-level debug --dev
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
`--dev` serves `index.html` with `Cache-Control: no-cache` so a
|
|
89
|
+
re-deployed frontend wheel isn't masked by a browser-cached SPA
|
|
90
|
+
shell pointing at a now-deleted hashed bundle. Hashed bundles
|
|
91
|
+
themselves stay `immutable` regardless. Skip `--dev` in production —
|
|
92
|
+
the browser's default heuristic is fine when you're not rebuilding
|
|
93
|
+
every few minutes.
|
|
94
|
+
|
|
95
|
+
## Roadmap
|
|
96
|
+
|
|
97
|
+
- ✅ Standalone backend with WS-first API, persistent compile queue, mDNS device discovery
|
|
98
|
+
- ✅ Curated board + component catalogs (nightly catalog sync from upstream ESPHome)
|
|
99
|
+
- ✅ Functional parity with the legacy dashboard
|
|
100
|
+
(one intentional decline: the HA Supervisor `/auth` POST flow —
|
|
101
|
+
the new backend's HA add-on path is ingress-only by design, see
|
|
102
|
+
[issue #85](https://github.com/esphome/device-builder/issues/85))
|
|
103
|
+
- 🚧 Beta toggle in the official ESPHome container and Home Assistant add-on
|
|
104
|
+
- 🗺️ See the
|
|
105
|
+
[project backlog](https://github.com/orgs/esphome/projects/7/views/1?filterQuery=project%3A%22device-builder-dashboard%22)
|
|
106
|
+
for in-progress work and what's planned next
|
|
107
|
+
|
|
108
|
+
## Documentation
|
|
109
|
+
|
|
110
|
+
- **[docs/ARCHITECTURE.md](docs/ARCHITECTURE.md)** — controllers, event bus,
|
|
111
|
+
firmware queue, catalog sync, deployment.
|
|
112
|
+
- **[docs/API.md](docs/API.md)** — every WebSocket command, request/response
|
|
113
|
+
shapes, event types.
|
|
114
|
+
- **[esphome_device_builder/definitions/README.md](esphome_device_builder/definitions/README.md)** —
|
|
115
|
+
contributor guide for board manifests.
|
|
116
|
+
|
|
117
|
+
## Contributing
|
|
118
|
+
|
|
119
|
+
Contributions welcome — board definitions especially
|
|
120
|
+
([definitions/README.md](esphome_device_builder/definitions/README.md)).
|
|
121
|
+
|
|
122
|
+
Every PR needs **exactly one** label from this set so it lands in the right
|
|
123
|
+
release-notes section: `breaking-change`, `new-feature`, `enhancement`,
|
|
124
|
+
`bugfix`, `refactor`, `docs`, `maintenance`, `ci`, `dependencies`. CI enforces
|
|
125
|
+
the rule via [`pr-labels.yaml`](.github/workflows/pr-labels.yaml).
|
|
126
|
+
|
|
127
|
+
Bugs / feature ideas: open an issue and the chooser will route you to the
|
|
128
|
+
right venue (this repo for dashboard bugs, esphome core for compile/firmware
|
|
129
|
+
issues, org Discussions for ideas, Discord for chat).
|
|
130
|
+
|
|
131
|
+
## License
|
|
132
|
+
|
|
133
|
+
Apache-2.0 — Maintained by [Open Home Foundation](https://www.openhomefoundation.io/).
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# ESPHome Device Builder Dashboard
|
|
2
|
+
|
|
3
|
+
[](https://codecov.io/gh/esphome/device-builder) [](https://codspeed.io/esphome/device-builder)
|
|
4
|
+
|
|
5
|
+
> **Status:** in active development. Roughly alpha, closing on beta. Issues
|
|
6
|
+
> and feedback welcome — please check existing issues / the
|
|
7
|
+
> [project board](https://github.com/orgs/esphome/projects/7/views/1?filterQuery=project%3A%22device-builder-dashboard%22)
|
|
8
|
+
> first, and join the [Discord channel](https://discord.gg/Rf2jWGVjaK)
|
|
9
|
+
> for live discussion.
|
|
10
|
+
|
|
11
|
+
A new dashboard for [ESPHome](https://github.com/esphome/esphome) — a guided
|
|
12
|
+
interface for composing device configs, exploring components and boards,
|
|
13
|
+
managing automations, and pushing firmware updates.
|
|
14
|
+
|
|
15
|
+
## Try it
|
|
16
|
+
|
|
17
|
+
The dashboard isn't yet wired into the ESPHome container or the Home Assistant
|
|
18
|
+
add-on as an opt-in preview — that's coming soon. In the meantime:
|
|
19
|
+
|
|
20
|
+
**Install from a [GitHub release](https://github.com/esphome/device-builder/releases):**
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
python -m venv .venv && source .venv/bin/activate
|
|
24
|
+
|
|
25
|
+
# Replace <version> with a release tag (X.Y.Z stable, X.Y.ZbN beta).
|
|
26
|
+
pip install "https://github.com/esphome/device-builder/releases/download/<version>/esphome_device_builder-<version>-py3-none-any.whl"
|
|
27
|
+
|
|
28
|
+
esphome-device-builder ~/esphome-configs
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The server starts on `http://localhost:6052`. Run with `--help` for the
|
|
32
|
+
full flag set. A PyPI release is on the way.
|
|
33
|
+
|
|
34
|
+
**From source** (requires [uv](https://docs.astral.sh/uv/)):
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
git clone https://github.com/esphome/device-builder
|
|
38
|
+
cd device-builder
|
|
39
|
+
script/setup
|
|
40
|
+
source .venv/bin/activate
|
|
41
|
+
esphome-device-builder ./configs --log-level debug --dev
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
`--dev` serves `index.html` with `Cache-Control: no-cache` so a
|
|
45
|
+
re-deployed frontend wheel isn't masked by a browser-cached SPA
|
|
46
|
+
shell pointing at a now-deleted hashed bundle. Hashed bundles
|
|
47
|
+
themselves stay `immutable` regardless. Skip `--dev` in production —
|
|
48
|
+
the browser's default heuristic is fine when you're not rebuilding
|
|
49
|
+
every few minutes.
|
|
50
|
+
|
|
51
|
+
## Roadmap
|
|
52
|
+
|
|
53
|
+
- ✅ Standalone backend with WS-first API, persistent compile queue, mDNS device discovery
|
|
54
|
+
- ✅ Curated board + component catalogs (nightly catalog sync from upstream ESPHome)
|
|
55
|
+
- ✅ Functional parity with the legacy dashboard
|
|
56
|
+
(one intentional decline: the HA Supervisor `/auth` POST flow —
|
|
57
|
+
the new backend's HA add-on path is ingress-only by design, see
|
|
58
|
+
[issue #85](https://github.com/esphome/device-builder/issues/85))
|
|
59
|
+
- 🚧 Beta toggle in the official ESPHome container and Home Assistant add-on
|
|
60
|
+
- 🗺️ See the
|
|
61
|
+
[project backlog](https://github.com/orgs/esphome/projects/7/views/1?filterQuery=project%3A%22device-builder-dashboard%22)
|
|
62
|
+
for in-progress work and what's planned next
|
|
63
|
+
|
|
64
|
+
## Documentation
|
|
65
|
+
|
|
66
|
+
- **[docs/ARCHITECTURE.md](docs/ARCHITECTURE.md)** — controllers, event bus,
|
|
67
|
+
firmware queue, catalog sync, deployment.
|
|
68
|
+
- **[docs/API.md](docs/API.md)** — every WebSocket command, request/response
|
|
69
|
+
shapes, event types.
|
|
70
|
+
- **[esphome_device_builder/definitions/README.md](esphome_device_builder/definitions/README.md)** —
|
|
71
|
+
contributor guide for board manifests.
|
|
72
|
+
|
|
73
|
+
## Contributing
|
|
74
|
+
|
|
75
|
+
Contributions welcome — board definitions especially
|
|
76
|
+
([definitions/README.md](esphome_device_builder/definitions/README.md)).
|
|
77
|
+
|
|
78
|
+
Every PR needs **exactly one** label from this set so it lands in the right
|
|
79
|
+
release-notes section: `breaking-change`, `new-feature`, `enhancement`,
|
|
80
|
+
`bugfix`, `refactor`, `docs`, `maintenance`, `ci`, `dependencies`. CI enforces
|
|
81
|
+
the rule via [`pr-labels.yaml`](.github/workflows/pr-labels.yaml).
|
|
82
|
+
|
|
83
|
+
Bugs / feature ideas: open an issue and the chooser will route you to the
|
|
84
|
+
right venue (this repo for dashboard bugs, esphome core for compile/firmware
|
|
85
|
+
issues, org Discussions for ideas, Discord for chat).
|
|
86
|
+
|
|
87
|
+
## License
|
|
88
|
+
|
|
89
|
+
Apache-2.0 — Maintained by [Open Home Foundation](https://www.openhomefoundation.io/).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""ESPHome Device Builder."""
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
"""Entry point: python -m esphome_device_builder [options]."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import argparse
|
|
6
|
+
import logging
|
|
7
|
+
import os
|
|
8
|
+
from logging.handlers import RotatingFileHandler
|
|
9
|
+
|
|
10
|
+
from .constants import DEFAULT_HOST, DEFAULT_INGRESS_PORT, DEFAULT_PORT
|
|
11
|
+
from .controllers.config import DashboardSettings
|
|
12
|
+
from .device_builder import DeviceBuilder
|
|
13
|
+
|
|
14
|
+
_FORMAT = "%(asctime)s %(levelname)s [%(name)s] %(message)s"
|
|
15
|
+
_DATE_FORMAT = "%Y-%m-%d %H:%M:%S"
|
|
16
|
+
_MAX_LOG_SIZE = 5_000_000 # 5 MB
|
|
17
|
+
_LOGGER_NAME = "esphome_device_builder"
|
|
18
|
+
|
|
19
|
+
_LOG_LEVELS = {
|
|
20
|
+
"debug": logging.DEBUG,
|
|
21
|
+
"info": logging.INFO,
|
|
22
|
+
"warning": logging.WARNING,
|
|
23
|
+
"error": logging.ERROR,
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def _setup_logging(log_level: str, log_file: str | None = None) -> None:
|
|
28
|
+
"""Set up logging with console + optional file handler."""
|
|
29
|
+
level = _LOG_LEVELS.get(log_level.lower(), logging.INFO)
|
|
30
|
+
|
|
31
|
+
logging.basicConfig(level=level, format=_FORMAT, datefmt=_DATE_FORMAT)
|
|
32
|
+
|
|
33
|
+
if log_file:
|
|
34
|
+
file_handler = RotatingFileHandler(log_file, maxBytes=_MAX_LOG_SIZE, backupCount=1)
|
|
35
|
+
file_handler.setFormatter(logging.Formatter(_FORMAT, datefmt=_DATE_FORMAT))
|
|
36
|
+
logging.getLogger().addHandler(file_handler)
|
|
37
|
+
|
|
38
|
+
logging.getLogger(_LOGGER_NAME).setLevel(level)
|
|
39
|
+
|
|
40
|
+
# Silence noisy libraries
|
|
41
|
+
logging.getLogger("asyncio").setLevel(logging.WARNING)
|
|
42
|
+
logging.getLogger("aiohttp").setLevel(logging.WARNING)
|
|
43
|
+
logging.getLogger("zeroconf").setLevel(logging.WARNING)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def main() -> None:
|
|
47
|
+
"""Run the ESPHome Device Builder."""
|
|
48
|
+
parser = argparse.ArgumentParser(
|
|
49
|
+
description="ESPHome Device Builder",
|
|
50
|
+
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
|
51
|
+
)
|
|
52
|
+
parser.add_argument(
|
|
53
|
+
"configuration",
|
|
54
|
+
nargs="?",
|
|
55
|
+
default="./configs",
|
|
56
|
+
help="Path to the ESPHome configuration directory",
|
|
57
|
+
)
|
|
58
|
+
parser.add_argument("--port", type=int, default=DEFAULT_PORT, help="HTTP port to listen on")
|
|
59
|
+
parser.add_argument("--host", default=DEFAULT_HOST, help="Host/IP to bind to")
|
|
60
|
+
parser.add_argument(
|
|
61
|
+
"--username",
|
|
62
|
+
default="",
|
|
63
|
+
help="Dashboard username (must be paired with --password; falls back to $USERNAME)",
|
|
64
|
+
)
|
|
65
|
+
parser.add_argument(
|
|
66
|
+
"--password",
|
|
67
|
+
default="",
|
|
68
|
+
help="Dashboard password (must be paired with --username; falls back to $PASSWORD)",
|
|
69
|
+
)
|
|
70
|
+
parser.add_argument("--ha-addon", action="store_true", help="Running as HA add-on")
|
|
71
|
+
parser.add_argument(
|
|
72
|
+
"--ingress-port",
|
|
73
|
+
type=int,
|
|
74
|
+
default=DEFAULT_INGRESS_PORT,
|
|
75
|
+
help="Port for the trusted HA Ingress site (only used with --ha-addon)",
|
|
76
|
+
)
|
|
77
|
+
parser.add_argument(
|
|
78
|
+
"--ingress-host",
|
|
79
|
+
default="",
|
|
80
|
+
help=(
|
|
81
|
+
"Bind address for the HA Ingress site (defaults to all interfaces "
|
|
82
|
+
"inside the addon container)"
|
|
83
|
+
),
|
|
84
|
+
)
|
|
85
|
+
parser.add_argument(
|
|
86
|
+
"--log-level",
|
|
87
|
+
default="info",
|
|
88
|
+
choices=["debug", "info", "warning", "error"],
|
|
89
|
+
help="Log level",
|
|
90
|
+
)
|
|
91
|
+
parser.add_argument("--log-file", default=None, help="Log to file (rotated)")
|
|
92
|
+
parser.add_argument(
|
|
93
|
+
"--dev",
|
|
94
|
+
action="store_true",
|
|
95
|
+
help=(
|
|
96
|
+
"Development mode: serve ``index.html`` with ``Cache-Control: "
|
|
97
|
+
"no-cache`` so the browser always picks up a freshly-rebuilt "
|
|
98
|
+
"frontend wheel. Disabled by default — the browser's heuristic "
|
|
99
|
+
"is fine in production."
|
|
100
|
+
),
|
|
101
|
+
)
|
|
102
|
+
parser.add_argument(
|
|
103
|
+
"--trusted-domains",
|
|
104
|
+
default=None,
|
|
105
|
+
help=(
|
|
106
|
+
"Comma-separated hostnames the WebSocket handshake trusts "
|
|
107
|
+
"(case-insensitive, port-tolerant). Two effects when password "
|
|
108
|
+
"auth is on AND the request carries an Origin header: (1) "
|
|
109
|
+
"accept cross-origin connections whose Origin header's "
|
|
110
|
+
"hostname is in the list — required for reverse-proxy "
|
|
111
|
+
"deployments where Origin is ``dashboard.example.com`` but the "
|
|
112
|
+
"upstream Host is ``localhost``; (2) reject any connection "
|
|
113
|
+
"whose Host header isn't in the list — defense in depth against "
|
|
114
|
+
"DNS rebinding. Both gates skip Origin-less requests (CLI "
|
|
115
|
+
"tools, HA integration, direct websockets clients) since "
|
|
116
|
+
"DNS-rebinding is a browser-only attack vector and those "
|
|
117
|
+
"clients are already gated by bearer-token auth. Default "
|
|
118
|
+
"(flag unset) consults the $ESPHOME_TRUSTED_DOMAINS env var "
|
|
119
|
+
'(legacy ESPHome dashboard compatibility); pass --trusted-domains "" '
|
|
120
|
+
"to explicitly ignore the env var and disable both checks. "
|
|
121
|
+
"Use ``*`` as the only entry to opt out of host-restriction "
|
|
122
|
+
"while keeping cross-origin acceptance permissive."
|
|
123
|
+
),
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
args = parser.parse_args()
|
|
127
|
+
|
|
128
|
+
_validate_credentials(parser, args)
|
|
129
|
+
|
|
130
|
+
_setup_logging(args.log_level, args.log_file)
|
|
131
|
+
|
|
132
|
+
settings = DashboardSettings()
|
|
133
|
+
settings.parse_args(args)
|
|
134
|
+
|
|
135
|
+
_warn_if_unprotected(settings)
|
|
136
|
+
|
|
137
|
+
device_builder = DeviceBuilder(settings)
|
|
138
|
+
device_builder.run()
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
def _validate_credentials(parser: argparse.ArgumentParser, args: argparse.Namespace) -> None:
|
|
142
|
+
"""Reject mismatched --username / --password (or env equivalents)."""
|
|
143
|
+
has_user = bool(args.username or os.getenv("USERNAME"))
|
|
144
|
+
has_pass = bool(args.password or os.getenv("PASSWORD"))
|
|
145
|
+
if has_user != has_pass:
|
|
146
|
+
parser.error(
|
|
147
|
+
"--username and --password must both be set (or both unset). "
|
|
148
|
+
"Use $USERNAME / $PASSWORD env vars as alternatives."
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def _warn_if_unprotected(settings: DashboardSettings) -> None:
|
|
153
|
+
"""Print a banner when starting without any authentication boundary."""
|
|
154
|
+
if settings.using_password:
|
|
155
|
+
return
|
|
156
|
+
# HA add-on installs are exempt — the supervisor's ingress proxy
|
|
157
|
+
# authenticates upstream of the trusted site.
|
|
158
|
+
if settings.create_ingress_site:
|
|
159
|
+
return
|
|
160
|
+
banner = "=" * 70
|
|
161
|
+
logging.getLogger(_LOGGER_NAME).warning(
|
|
162
|
+
"\n%s\n"
|
|
163
|
+
" WARNING: Dashboard is running WITHOUT AUTHENTICATION.\n"
|
|
164
|
+
" Anyone with network access to %s:%d can manage your devices.\n"
|
|
165
|
+
" Set --username and --password (or $USERNAME / $PASSWORD) to enable.\n"
|
|
166
|
+
"%s",
|
|
167
|
+
banner,
|
|
168
|
+
settings.host,
|
|
169
|
+
settings.port,
|
|
170
|
+
banner,
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
if __name__ == "__main__":
|
|
175
|
+
main()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""API layer — WebSocket handler + legacy REST endpoints."""
|