Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fan-only mode for MS-SD24VC #13

Open
mweber88 opened this issue Jan 17, 2017 · 1 comment
Open

Fan-only mode for MS-SD24VC #13

mweber88 opened this issue Jan 17, 2017 · 1 comment

Comments

@mweber88
Copy link

This unit (Mitsubishi MS-SD24VC) has a mode called Fan Only, which is not Auto, Heat, Dry, or Cool.

I would like to emulate this mode. Do you know what the byte would be for this mode?

Really, what I want to do is turn on Fan-only mode and control the fan speed of a different Mitsubishi unit. I would like to have faster fan speed than the bare minimum when the temperature is satisfied in Heat mode, but no setting will make that happen. I'm really hopeful that the fan-only mode will allow fan speed selection, and it will work with my Mr. Slim heat pump.

Ideas?

Mike

@bt4wang
Copy link
Contributor

bt4wang commented Mar 22, 2018

Is other mode works for your AC? If so, I think you can try this:

edit IRremote2.cpp, go to line 426, you can see this:

case HVAC_AUTO: data[6] = (byte) 0x20; break;

add a new line next to line 426:

case HVAC_FAN: data[6] = (byte) 0x00; break;

in HVACDemo.ino, you can use this code to send a FAN mode command:

irsend.sendHvacMitsubishi(HVAC_FAN, 23, FAN_SPEED_1, VANNE_AUTO_MOVE, false);

If it works, cheers.
If not, I need a fan mode IR raw dump of your IRremote. Use this code to get one: https://www.analysir.com/blog/?attachment_id=515. (a 38k IR receiver is needed)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants