Toni

Results 65 comments of Toni

The MSY code fix is now in pull request phase: https://github.com/letscontrolit/ESPEasy/pull/2916 I think I should separate out the MSY code from the generic Mitsubishi code, as a separate class. If...

Sure, it should be pretty simple to implement, for example Fujitsu already has a special argument 'ecomode': ``` void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t...

Hi, would you try out the 'dev' branch and see if this works? Thanks! At least in DKE-model heatpump the 'powerful' and 'quiet' seem to be toggles, sent as special...

Try if it responds as MitsubishiFD or MitsubishiFE model. Take a look at https://github.com/ToniA/arduino-heatpumpir/blob/master/examples/simple/simple.ino, and remove everything else but MitsubishiFDHeatpumpIR from the heatpumpIR array (starting from line 35).

I really don't know... It might very well work, or it might not. I have very limited experience with Mitsubishi units, all of the code and IR samples is contributed.

Yes, take a look at this: https://github.com/ToniA/ESPEasy/blob/master/ESPEasy/_P115_HeatpumpIR.ino I have already integrated this into the ESPEasy firmware, it probably has everything you need.

I added some comments into the readme of this repository, I hope that helps. The ESPEasy does not include this library, it only uses it in the build, so if...

The library might very well have errors. This protocol was contributed, so I haven't had any chance to check it out myself. Pull requests are welcome :)

Do you have any way to run my decoder sketch on an Arduino? I have a decoder for the Fuego protocol, perhaps this is really close: https://github.com/ToniA/Raw-IR-decoder-for-Arduino/blob/master/Fuego.cpp This IRRemote output...

OK, this protocol looks very much the same as the 'Fuego' protocol. The number of bits matches, the checksum calculation matches, and on a quick glance the most important functions...