mirror of
https://github.com/esphome/esphome.git
synced 2026-05-27 03:36:19 +08:00
Add some components to the new testing framework (M part 2) (#6208)
This commit is contained in:
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 6
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 6
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 17
|
||||||
|
rx_pin: 16
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 18
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 17
|
||||||
|
rx_pin: 16
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 18
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 16
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
uart:
|
||||||
|
- id: uart_micronova
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
micronova:
|
||||||
|
enable_rx_pin: 6
|
||||||
|
|
||||||
|
button:
|
||||||
|
- platform: micronova
|
||||||
|
custom_button:
|
||||||
|
name: Custom Micronova Button
|
||||||
|
memory_location: 0xA0
|
||||||
|
memory_address: 0x7D
|
||||||
|
memory_data: 0x0F
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: micronova
|
||||||
|
thermostat_temperature:
|
||||||
|
name: Micronova Thermostaat
|
||||||
|
step: 1
|
||||||
|
power_level:
|
||||||
|
name: Micronova Power level
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: micronova
|
||||||
|
room_temperature:
|
||||||
|
name: Room Temperature
|
||||||
|
fumes_temperature:
|
||||||
|
name: Fumes Temperature
|
||||||
|
water_temperature:
|
||||||
|
name: Water temperature
|
||||||
|
water_pressure:
|
||||||
|
name: Water pressure
|
||||||
|
stove_power:
|
||||||
|
name: Stove Power
|
||||||
|
fan_speed:
|
||||||
|
fan_rpm_offset: 240
|
||||||
|
name: Fan RPM
|
||||||
|
memory_address_sensor:
|
||||||
|
memory_location: 0x20
|
||||||
|
memory_address: 0x7d
|
||||||
|
name: Adres sensor
|
||||||
|
|
||||||
|
switch:
|
||||||
|
- platform: micronova
|
||||||
|
stove:
|
||||||
|
name: Stove on/off
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
i2s_audio:
|
||||||
|
i2s_lrclk_pin: 6
|
||||||
|
i2s_bclk_pin: 7
|
||||||
|
i2s_mclk_pin: 8
|
||||||
|
|
||||||
|
microphone:
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_external
|
||||||
|
i2s_din_pin: 3
|
||||||
|
adc_type: external
|
||||||
|
pdm: false
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
i2s_audio:
|
||||||
|
i2s_lrclk_pin: 6
|
||||||
|
i2s_bclk_pin: 7
|
||||||
|
i2s_mclk_pin: 8
|
||||||
|
|
||||||
|
microphone:
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_external
|
||||||
|
i2s_din_pin: 3
|
||||||
|
adc_type: external
|
||||||
|
pdm: false
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
i2s_audio:
|
||||||
|
i2s_lrclk_pin: 13
|
||||||
|
i2s_bclk_pin: 14
|
||||||
|
i2s_mclk_pin: 15
|
||||||
|
|
||||||
|
microphone:
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_adc
|
||||||
|
adc_pin: 32
|
||||||
|
adc_type: internal
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_external
|
||||||
|
i2s_din_pin: 33
|
||||||
|
adc_type: external
|
||||||
|
pdm: false
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
i2s_audio:
|
||||||
|
i2s_lrclk_pin: 13
|
||||||
|
i2s_bclk_pin: 14
|
||||||
|
i2s_mclk_pin: 15
|
||||||
|
|
||||||
|
microphone:
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_adc
|
||||||
|
adc_pin: 32
|
||||||
|
adc_type: internal
|
||||||
|
- platform: i2s_audio
|
||||||
|
id: mic_id_external
|
||||||
|
i2s_din_pin: 33
|
||||||
|
adc_type: external
|
||||||
|
pdm: false
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mics_4514
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mics_4514
|
||||||
|
update_interval: 60s
|
||||||
|
nitrogen_dioxide:
|
||||||
|
name: MICS-4514 NO2
|
||||||
|
carbon_monoxide:
|
||||||
|
name: MICS-4514 CO
|
||||||
|
methane:
|
||||||
|
name: MICS-4514 CH4
|
||||||
|
hydrogen:
|
||||||
|
name: MICS-4514 H2
|
||||||
|
ethanol:
|
||||||
|
name: MICS-4514 C2H5OH
|
||||||
|
ammonia:
|
||||||
|
name: MICS-4514 NH3
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
wifi:
|
||||||
|
ssid: MySSID
|
||||||
|
password: password1
|
||||||
|
|
||||||
|
remote_transmitter:
|
||||||
|
pin: 2
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
uart:
|
||||||
|
- id: uart_midea
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea
|
||||||
|
id: midea_unit
|
||||||
|
name: Midea Climate
|
||||||
|
on_control:
|
||||||
|
- logger.log: Control message received!
|
||||||
|
- lambda: |-
|
||||||
|
x.set_mode(CLIMATE_MODE_FAN_ONLY);
|
||||||
|
on_state:
|
||||||
|
- logger.log: State changed!
|
||||||
|
transmitter_id:
|
||||||
|
period: 1s
|
||||||
|
num_attempts: 5
|
||||||
|
timeout: 2s
|
||||||
|
beeper: false
|
||||||
|
autoconf: true
|
||||||
|
visual:
|
||||||
|
min_temperature: 17 °C
|
||||||
|
max_temperature: 30 °C
|
||||||
|
temperature_step: 0.5 °C
|
||||||
|
supported_modes:
|
||||||
|
- FAN_ONLY
|
||||||
|
- HEAT_COOL
|
||||||
|
- COOL
|
||||||
|
- HEAT
|
||||||
|
- DRY
|
||||||
|
custom_fan_modes:
|
||||||
|
- SILENT
|
||||||
|
- TURBO
|
||||||
|
supported_presets:
|
||||||
|
- ECO
|
||||||
|
- BOOST
|
||||||
|
- SLEEP
|
||||||
|
custom_presets:
|
||||||
|
- FREEZE_PROTECTION
|
||||||
|
supported_swing_modes:
|
||||||
|
- VERTICAL
|
||||||
|
- HORIZONTAL
|
||||||
|
- BOTH
|
||||||
|
outdoor_temperature:
|
||||||
|
name: Temp
|
||||||
|
power_usage:
|
||||||
|
name: Power
|
||||||
|
humidity_setpoint:
|
||||||
|
name: Humidity
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
wifi:
|
||||||
|
ssid: MySSID
|
||||||
|
password: password1
|
||||||
|
|
||||||
|
remote_transmitter:
|
||||||
|
pin: 18
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
uart:
|
||||||
|
- id: uart_midea
|
||||||
|
tx_pin: 17
|
||||||
|
rx_pin: 16
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea
|
||||||
|
id: midea_unit
|
||||||
|
name: Midea Climate
|
||||||
|
on_control:
|
||||||
|
- logger.log: Control message received!
|
||||||
|
- lambda: |-
|
||||||
|
x.set_mode(CLIMATE_MODE_FAN_ONLY);
|
||||||
|
on_state:
|
||||||
|
- logger.log: State changed!
|
||||||
|
transmitter_id:
|
||||||
|
period: 1s
|
||||||
|
num_attempts: 5
|
||||||
|
timeout: 2s
|
||||||
|
beeper: false
|
||||||
|
autoconf: true
|
||||||
|
visual:
|
||||||
|
min_temperature: 17 °C
|
||||||
|
max_temperature: 30 °C
|
||||||
|
temperature_step: 0.5 °C
|
||||||
|
supported_modes:
|
||||||
|
- FAN_ONLY
|
||||||
|
- HEAT_COOL
|
||||||
|
- COOL
|
||||||
|
- HEAT
|
||||||
|
- DRY
|
||||||
|
custom_fan_modes:
|
||||||
|
- SILENT
|
||||||
|
- TURBO
|
||||||
|
supported_presets:
|
||||||
|
- ECO
|
||||||
|
- BOOST
|
||||||
|
- SLEEP
|
||||||
|
custom_presets:
|
||||||
|
- FREEZE_PROTECTION
|
||||||
|
supported_swing_modes:
|
||||||
|
- VERTICAL
|
||||||
|
- HORIZONTAL
|
||||||
|
- BOTH
|
||||||
|
outdoor_temperature:
|
||||||
|
name: Temp
|
||||||
|
power_usage:
|
||||||
|
name: Power
|
||||||
|
humidity_setpoint:
|
||||||
|
name: Humidity
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
wifi:
|
||||||
|
ssid: MySSID
|
||||||
|
password: password1
|
||||||
|
|
||||||
|
remote_transmitter:
|
||||||
|
pin: 12
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
uart:
|
||||||
|
- id: uart_midea
|
||||||
|
tx_pin: 4
|
||||||
|
rx_pin: 5
|
||||||
|
baud_rate: 9600
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea
|
||||||
|
id: midea_unit
|
||||||
|
name: Midea Climate
|
||||||
|
on_control:
|
||||||
|
- logger.log: Control message received!
|
||||||
|
- lambda: |-
|
||||||
|
x.set_mode(CLIMATE_MODE_FAN_ONLY);
|
||||||
|
on_state:
|
||||||
|
- logger.log: State changed!
|
||||||
|
transmitter_id:
|
||||||
|
period: 1s
|
||||||
|
num_attempts: 5
|
||||||
|
timeout: 2s
|
||||||
|
beeper: false
|
||||||
|
autoconf: true
|
||||||
|
visual:
|
||||||
|
min_temperature: 17 °C
|
||||||
|
max_temperature: 30 °C
|
||||||
|
temperature_step: 0.5 °C
|
||||||
|
supported_modes:
|
||||||
|
- FAN_ONLY
|
||||||
|
- HEAT_COOL
|
||||||
|
- COOL
|
||||||
|
- HEAT
|
||||||
|
- DRY
|
||||||
|
custom_fan_modes:
|
||||||
|
- SILENT
|
||||||
|
- TURBO
|
||||||
|
supported_presets:
|
||||||
|
- ECO
|
||||||
|
- BOOST
|
||||||
|
- SLEEP
|
||||||
|
custom_presets:
|
||||||
|
- FREEZE_PROTECTION
|
||||||
|
supported_swing_modes:
|
||||||
|
- VERTICAL
|
||||||
|
- HORIZONTAL
|
||||||
|
- BOTH
|
||||||
|
outdoor_temperature:
|
||||||
|
name: Temp
|
||||||
|
power_usage:
|
||||||
|
name: Power
|
||||||
|
humidity_setpoint:
|
||||||
|
name: Humidity
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea_ir
|
||||||
|
name: Midea IR
|
||||||
|
use_fahrenheit: true
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea_ir
|
||||||
|
name: Midea IR
|
||||||
|
use_fahrenheit: true
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea_ir
|
||||||
|
name: Midea IR
|
||||||
|
use_fahrenheit: true
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea_ir
|
||||||
|
name: Midea IR
|
||||||
|
use_fahrenheit: true
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: midea_ir
|
||||||
|
name: Midea IR
|
||||||
|
use_fahrenheit: true
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: mitsubishi
|
||||||
|
name: Mitsubishi
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: mitsubishi
|
||||||
|
name: Mitsubishi
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: mitsubishi
|
||||||
|
name: Mitsubishi
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: mitsubishi
|
||||||
|
name: Mitsubishi
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
remote_transmitter:
|
||||||
|
pin: 4
|
||||||
|
carrier_duty_percent: 50%
|
||||||
|
|
||||||
|
climate:
|
||||||
|
- platform: mitsubishi
|
||||||
|
name: Mitsubishi
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90393
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90393
|
||||||
|
oversampling: 1
|
||||||
|
filter: 0
|
||||||
|
gain: 3X
|
||||||
|
x_axis:
|
||||||
|
name: mlxxaxis
|
||||||
|
y_axis:
|
||||||
|
name: mlxyaxis
|
||||||
|
z_axis:
|
||||||
|
name: mlxzaxis
|
||||||
|
resolution: 17BIT
|
||||||
|
temperature:
|
||||||
|
name: mlxtemp
|
||||||
|
oversampling: 2
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mlx90614
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mlx90614
|
||||||
|
ambient:
|
||||||
|
name: Ambient
|
||||||
|
object:
|
||||||
|
name: Object
|
||||||
|
emissivity: 1.0
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5603
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5603
|
||||||
|
address: 0x30
|
||||||
|
field_strength_x:
|
||||||
|
name: HMC5883L Field Strength X
|
||||||
|
field_strength_y:
|
||||||
|
name: HMC5883L Field Strength Y
|
||||||
|
field_strength_z:
|
||||||
|
name: HMC5883L Field Strength Z
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5983
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5983
|
||||||
|
field_strength_x:
|
||||||
|
name: "Magnet X"
|
||||||
|
id: magnet_x
|
||||||
|
field_strength_y:
|
||||||
|
name: "Magnet Y"
|
||||||
|
id: magnet_y
|
||||||
|
field_strength_z:
|
||||||
|
name: "Magnet Z"
|
||||||
|
id: magnet_z
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5983
|
||||||
|
scl: 5
|
||||||
|
sda: 4
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5983
|
||||||
|
field_strength_x:
|
||||||
|
name: "Magnet X"
|
||||||
|
id: magnet_x
|
||||||
|
field_strength_y:
|
||||||
|
name: "Magnet Y"
|
||||||
|
id: magnet_y
|
||||||
|
field_strength_z:
|
||||||
|
name: "Magnet Z"
|
||||||
|
id: magnet_z
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
i2c:
|
||||||
|
- id: i2c_mmc5983
|
||||||
|
scl: 16
|
||||||
|
sda: 17
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: mmc5983
|
||||||
|
field_strength_x:
|
||||||
|
name: "Magnet X"
|
||||||
|
id: magnet_x
|
||||||
|
field_strength_y:
|
||||||
|
name: "Magnet Y"
|
||||||
|
id: magnet_y
|
||||||
|
field_strength_z:
|
||||||
|
name: "Magnet Z"
|
||||||
|
id: magnet_z
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user