Releases: Sammy1Am/mitsubishi-uart
v1.3.1
v1.3.0
Tons of fixes and polish from @KazWolfe in this release, thanks!
Highlights
- Fix temperatures for some units
- Add lots of sensors (but leave them disabled in Home Assistant by default)
- Added a packet sending queue limit to improve stability in weird situations
Changes List
- fix: Add default cases to certain switches by @KazWolfe in #8
- Expose Compressor Frequency as a sensor by @KazWolfe in #9
- Update README.md by @KazWolfe in #15
- chore/fix: Use ESPHome editor configs, boring fixes. by @KazWolfe in #23
- feat: Legacy Temperature Support by @KazWolfe in #20
- feat: Add ThermostatHello packet handling by @KazWolfe in #22
- feat: Expose Actual Fan Speed Properly by @KazWolfe in #21
- feat: Add error code sensor by @KazWolfe in #18
- feat: Start Autoconf Framework by @KazWolfe in #19
- When active mode is off, pass thermostat temps. by @Sammy1Am in #25
- fix: Change vane trait logic by @KazWolfe in #29
- fix: Support legacy temperatures everywhere by @KazWolfe in #33
- fix: Use other room_temp scale by @KazWolfe in #34
New Contributors
Full Changelog: v1.2.1...v1.3.0
v1.2.1
Fixed an issue when compiling for the ESP8266.
Full Changelog: v1.2.0...v1.2.1
v1.2.0
Thermostat Support!
This release adds support for connecting an MHK2 (or similar like a Kumo Cloud Adapter, though only the MHK2 has been tested so far) to the microcontroller. Basically the thermostat is connected to a second UART on the microcontroller (the instructions at mhk1_mqtt are helpful), and the microcontroller will forward packets between the thermostat and heat pump.
Other minor changes:
- Colorized packet logging
- Added "Active Mode" switch in to enable/disable generating packets (useful for silently snooping on thermostat traffic)
- Reworked packet processing even more
- Fixed a bug with publishing vane state
Full Changelog: v1.1.0...v1.2.0
Vane Support!
A minor release to get things closer to parity with the previous version.
Added:
- Vane control
Still missing:
- Thermostat Support
- Some additional (questionably useful/accurate) sensors
Full Changelog: v1.0.0...v1.1.0
v1.0.0
Major re-write of the component to simplify packet processing and better organize code. Primarily:
- Configuration for required sub-components like Climate, Select, and Sensor are now built-in to the
mitsubishi_uart
configuration. This greatly simplifies the minimal configuration, and means that required components should always be present. - Made the assumption that packets will exist in pairs (one-sent, one-received) which allows for a simpler packet-handling routine. I know there is the possibility of packets sent that don't have a response and that can be accounted for. Communications errors could still mean a packet may go missing, but aside from a brief hiccup when it does, nothing should break.
- Temperature source select menu in Home Assistant should be much better behaved now.
Missing Features
A few previous features haven't yet been re-written in the new code base, so if you need these, stick with the first-pass
tag for now:
- Vertical and horizontal vane control
- External thermostat/Kumo support.
- Some additional sensors like Loop Status, Stage, etc.
Full Changelog: first-pass...release