diff --git a/esphome/components/mitsubishi_uart/muart_packet.h b/esphome/components/mitsubishi_uart/muart_packet.h index 2d06292ce8..c8921286f5 100644 --- a/esphome/components/mitsubishi_uart/muart_packet.h +++ b/esphome/components/mitsubishi_uart/muart_packet.h @@ -160,11 +160,11 @@ class GetRequestPacket : public Packet { return instance; } static GetRequestPacket &get_status_instance() { - static GetRequestPacket instance = GetRequestPacket(GetCommand::STANDBY); + static GetRequestPacket instance = GetRequestPacket(GetCommand::STATUS); return instance; } static GetRequestPacket &get_standby_instance() { - static GetRequestPacket instance = GetRequestPacket(GetCommand::STATUS); + static GetRequestPacket instance = GetRequestPacket(GetCommand::STANDBY); return instance; } static GetRequestPacket &get_error_info_instance() {