Compare commits

..

No commits in common. "17ed9844bed672a55c87dc30d91cb963916ee1fd" and "80e9f51d345621b84735ac8de685366a900054da" have entirely different histories.

6 changed files with 65 additions and 58 deletions

View file

@ -7,16 +7,4 @@ esp32:
packages:
- !include
file: ../domain/network/ethernet.yaml
ethernet:
type: LAN8720
mdc_pin: GPIO23
mdio_pin: GPIO18
clk:
pin: GPIO17
mode: CLK_OUT
phy_addr: 0
power_pin:
number: GPIO12
ignore_strapping_warning: true
file: ../domain/network/ethernet_lan8720.yaml

View file

@ -1,7 +0,0 @@
ethernet:
domain: .km6g.us
manual_ip:
static_ip: ${ip4_address}
gateway: 192.168.81.3
subnet: 255.255.255.0
dns1: 192.168.255.2

View file

@ -0,0 +1,17 @@
ethernet:
type: LAN8720
mdc_pin: GPIO23
mdio_pin: GPIO18
clk:
pin: GPIO17
mode: CLK_OUT
phy_addr: 0
power_pin:
number: GPIO12
ignore_strapping_warning: true
domain: .km6g.us
manual_ip:
static_ip: ${ip4_address}
gateway: 192.168.81.3
subnet: 255.255.255.0
dns1: 192.168.255.2

View file

@ -0,0 +1,19 @@
ethernet:
type: W5500
mosi_pin:
number: GPIO09
ignore_strapping_warning: true
miso_pin:
number: GPIO08
ignore_strapping_warning: true
clk_pin: GPIO10
cs_pin: GPIO5
reset_pin: GPIO04
interrupt_pin: GPIO03
clock_speed: 25MHz
domain: .km6g.us
manual_ip:
static_ip: ${ip4_address}
gateway: 192.168.81.3
subnet: 255.255.255.0
dns1: 192.168.255.2

View file

@ -35,10 +35,10 @@ esphome:
- id: hall
name: Second Floor Hall
devices:
- id: heat_pump
name: Heat Pump 2
- id: hvac_device
name: HVAC2
area_id: attic_area
- id: thermostat
- id: hvac_thermostat
name: Second Floor Thermostat
area_id: hall
@ -48,8 +48,8 @@ external_components:
climate:
- platform: mitsubishi_itp
name: "Second Floor HVAC"
device_id: heat_pump
name: "Climate"
device_id: hvac_device
uart_heatpump: hp_uart
uart_thermostat: th_uart
enhanced_mhk: true
@ -59,52 +59,52 @@ binary_sensor:
- platform: mitsubishi_itp
defrost:
name: "Defrost"
device_id: heat_pump
device_id: hvac_device
filter_status:
name: "Filter Status"
device_id: heat_pump
device_id: hvac_device
preheat:
name: "Preheat"
device_id: heat_pump
device_id: hvac_device
standby:
name: "Standby"
device_id: heat_pump
device_id: hvac_device
using_internal_temperature:
name: "Using Internal Temperature"
device_id: heat_pump
device_id: hvac_device
sensor:
- platform: mitsubishi_itp
compressor_frequency:
name: "Compressor Frequency"
device_id: heat_pump
device_id: hvac_device
outdoor_temperature:
name: "Outdoor Temperature"
device_id: heat_pump
device_id: hvac_device
input_watts:
name: "Input Power"
device_id: heat_pump
device_id: hvac_device
lifetime_kwh:
name: "Lifetime Energy"
device_id: heat_pump
device_id: hvac_device
runtime:
name: "Runtime"
device_id: heat_pump
device_id: hvac_device
thermostat_humidity:
name: "Humidity"
device_id: thermostat
name: "Thermostat Humidity"
device_id: hvac_thermostat
thermostat_temperature:
name: "Temperature"
device_id: thermostat
name: "Thermostat Temperature"
device_id: hvac_thermostat
text_sensor:
- platform: mitsubishi_itp
actual_fan:
name: "Actual Fan Speed"
device_id: heat_pump
name: "Actual Fan"
device_id: hvac_device
error_code:
name: "Error Code"
device_id: heat_pump
device_id: hvac_device
thermostat_battery:
name: "Battery"
device_id: thermostat
name: "Thermostat Battery"
device_id: hvac_thermostat

View file

@ -4,18 +4,18 @@ esphome:
board_build.flash_mode: dio
esp32:
board: esp32-c3-devkitc-02
board: esp32-c3-devkitm-1
packages:
- !include
file: ../domain/network/ethernet.yaml
file: ../domain/network/ethernet_w5500.yaml
- !include
file: ../domain/uart.yaml
vars:
id: hp_uart
tx_pin: GPIO0
rx_pin: GPIO1
tx_pin: GPIO6
rx_pin: GPIO7
baud_rate: 2400
parity: EVEN
@ -27,13 +27,3 @@ packages:
rx_pin: GPIO20
baud_rate: 2400
parity: EVEN
ethernet:
type: W5500
mosi_pin: GPIO06
miso_pin: GPIO04
clk_pin: GPIO07
cs_pin: GPIO10
reset_pin: GPIO05
interrupt_pin: GPIO03
clock_speed: 40MHz