mirror of
https://github.com/GrKoR/esphome_aux_ac_component.git
synced 2025-12-06 11:36:55 +03:00
163 lines
3.6 KiB
YAML
163 lines
3.6 KiB
YAML
external_components:
|
|
- source:
|
|
type: local
|
|
path: ../components
|
|
|
|
substitutions:
|
|
devicename: test_local_power_limitations
|
|
upper_devicename: Test AUX
|
|
|
|
esphome:
|
|
name: $devicename
|
|
platform: ESP8266
|
|
board: esp12e
|
|
|
|
wifi:
|
|
ssid: !secret wifi_ssid
|
|
password: !secret wifi_pass
|
|
manual_ip:
|
|
static_ip: !secret wifi_ip
|
|
gateway: !secret wifi_gateway
|
|
subnet: !secret wifi_subnet
|
|
dns1: 8.8.8.8
|
|
dns2: 1.1.1.1
|
|
reboot_timeout: 0s
|
|
ap:
|
|
ssid: Test AUX Fallback Hotspot
|
|
password: !secret wifi_ap_pass
|
|
|
|
logger:
|
|
level: DEBUG
|
|
baud_rate: 0
|
|
|
|
api:
|
|
password: !secret api_pass
|
|
reboot_timeout: 0s
|
|
|
|
ota:
|
|
password: !secret ota_pass
|
|
|
|
web_server:
|
|
port: 80
|
|
|
|
uart:
|
|
id: ac_uart_bus
|
|
tx_pin: GPIO1
|
|
rx_pin: GPIO3
|
|
baud_rate: 4800
|
|
data_bits: 8
|
|
parity: EVEN
|
|
stop_bits: 1
|
|
|
|
sensor:
|
|
- platform: uptime
|
|
name: Uptime Sensor
|
|
|
|
climate:
|
|
- platform: aux_ac
|
|
name: $upper_devicename
|
|
id: aux_id
|
|
uart_id: ac_uart_bus
|
|
period: 7s
|
|
show_action: true
|
|
display_inverted: true
|
|
indoor_temperature:
|
|
name: $upper_devicename Indoor Temperature
|
|
id: ${devicename}_indoor_temp
|
|
internal: false
|
|
display_state:
|
|
name: $upper_devicename Display State
|
|
id: ${devicename}_display_state
|
|
internal: false
|
|
outdoor_temperature:
|
|
name: $upper_devicename Outdoor Temperature
|
|
id: ${devicename}_outdoor_temp
|
|
internal: false
|
|
outbound_temperature:
|
|
name: $upper_devicename Colant Outbound Temperature
|
|
id: ${devicename}_outbound_temp
|
|
internal: false
|
|
inbound_temperature:
|
|
name: $upper_devicename Colant Inbound Temperature
|
|
id: ${devicename}_inbound_temp
|
|
internal: false
|
|
compressor_temperature:
|
|
name: $upper_devicename Compressor Temperature
|
|
id: ${devicename}_strange_temp
|
|
internal: false
|
|
defrost_state:
|
|
name: $upper_devicename Defrost State
|
|
id: ${devicename}_defrost_state
|
|
internal: false
|
|
inverter_power:
|
|
name: $upper_devicename Inverter Power
|
|
id: ${devicename}_invertor_power
|
|
internal: false
|
|
preset_reporter:
|
|
name: $upper_devicename Preset Reporter
|
|
id: ${devicename}_preset_reporter
|
|
internal: false
|
|
inverter_power_limit_value:
|
|
name: $upper_devicename Inverter Power Limit Value
|
|
id: ${devicename}_inverter_power_limit_value
|
|
internal: false
|
|
inverter_power_limit_state:
|
|
name: $upper_devicename Inverter Power Limit State
|
|
id: ${devicename}_inverter_power_limit_state
|
|
internal: false
|
|
visual:
|
|
min_temperature: 16
|
|
max_temperature: 32
|
|
temperature_step: 0.5
|
|
supported_modes:
|
|
- HEAT_COOL
|
|
- COOL
|
|
- HEAT
|
|
- DRY
|
|
- FAN_ONLY
|
|
custom_fan_modes:
|
|
- MUTE
|
|
- TURBO
|
|
supported_presets:
|
|
- SLEEP
|
|
custom_presets:
|
|
- CLEAN
|
|
- HEALTH
|
|
- ANTIFUNGUS
|
|
supported_swing_modes:
|
|
- VERTICAL
|
|
- HORIZONTAL
|
|
- BOTH
|
|
|
|
|
|
button:
|
|
- platform: template
|
|
name: ${upper_devicename} IPower Limit Off
|
|
icon: "mdi:power-plug-off-outline"
|
|
on_press:
|
|
- aux_ac.power_limit_off: aux_id
|
|
|
|
- platform: template
|
|
name: ${upper_devicename} IPower Limit On Half
|
|
icon: "mdi:fraction-one-half"
|
|
on_press:
|
|
- aux_ac.power_limit_on:
|
|
id: aux_id
|
|
limit: 50
|
|
|
|
|
|
number:
|
|
- platform: template
|
|
name: ${upper_devicename} IPower Limit Value
|
|
id: ${devicename}_ipower_limit_value
|
|
icon: "mdi:battery-unknown"
|
|
mode: "slider"
|
|
min_value: 30
|
|
max_value: 100
|
|
step: 1
|
|
set_action:
|
|
then:
|
|
- lambda: !lambda |-
|
|
id(aux_id).powerLimitationOnSequence( x );
|
|
|