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 speeds control algorithm #1

Open
avbdr opened this issue Jun 19, 2023 · 3 comments
Open

Fan speeds control algorithm #1

avbdr opened this issue Jun 19, 2023 · 3 comments

Comments

@avbdr
Copy link

avbdr commented Jun 19, 2023

Hello Piotr,

thank you very much for a great app. It works perfectly on my Lennox li024ci ACs with just a couple glitches.

  1. For some reasons fanSpeed1 is always reported as 8 which is breaking all the mechanims.
    i have fixed this with a temporary hack to reset it the similar values which function is expecting it to be.
+    if (fanSpeed1 == 8) {
+        fanSpeed1 = fanSpeed2;
+        if (fanSpeed1 == 3)
+            fanSpeed1 = 5;
+    }
  1. Another thing I have noticed that Turbo mode is unrelated to the fan at all. It works like 'Max Speed' setting same way regardless of a speed set. Do I understand you correctlu, that this is a way you selected to implement Silent and Turbo modes inside the Fan setting dialog?

What AC model you were testing your code with? Id like to help and elaborate some common fix for this speed issue.

Thank you again

@avbdr
Copy link
Author

avbdr commented Jun 19, 2023

Btw, you can update your README and state that code works for some Lennox Air Conditioners to

@piotrva
Copy link
Owner

piotrva commented Jul 5, 2023

Hi,

The code was prepared for Sinclair MV-H09BIF unit and it works very well and the model was the source for the protocol involved. Not tested with any other models.

Good to hear that my work helped you a little ;)

@piotrva
Copy link
Owner

piotrva commented May 13, 2024

BTW - can you possibly include some debug logs, as were provided here: #3 (comment)

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