-
Notifications
You must be signed in to change notification settings - Fork 101
Conversation
Add Daikin Emura FVXS hardware support. Update set_control_info (GET http request capability on firmware 2.6.0)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution, I pointed out some minor issue about the changes you made on the intro section.
README.md
Outdated
@@ -8,7 +8,7 @@ The solution provided by Daikin is a mobile app (very well designed) that allows | |||
|
|||
Even if the system works, there are some problems: | |||
|
|||
- It is no possible to control the AC from a web browser. You must use the official mobile application. If your device is not supported or you are from a computer you can not control your air conditioner over the internet. | |||
- It's possible to control the AC from a web browser. You can use the official mobile application also. If your device is not supported or you are from a computer you can not control your air conditioner over the internet. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you misunderstood this section... This is about the official tools provided by Daikin, and as far as I know there is no official web application to control AC units.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok for this section. I understand now.
README.md
Outdated
@@ -45,15 +52,15 @@ Uri | GET | POST | desc | |||
/common/set_remote_method | | X | Set information on the polling system (reduce remote time update ??) | |||
/aircon/get_model_info | X | | Provides model informarion | |||
/aircon/get_control_info | X | | Main Uri to request all current status parameters | |||
/aircon/set_control_info | | X | Main Uri to set status parameters ( control almost all) | |||
/aircon/set_control_info | X | X | Main Uri to set status parameters (control almost all) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What the AC return on the /aircon/set_control_info
GET
request ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello,
pi@dev:~ $ curl -i "http://192.168.0.5/aircon/set_control_info?pow=1&mode=3&stemp=24.0&shum=0&f_rate=A&f_dir=0"
HTTP/1.0 200 OK
Content-Length: 11
Content-Type: text/plain
ret=OK,adv=
It works perfectly. There is an identical response if you call URL through web browser.
In README you say. This software works fine with Thank you for the fine software. |
I've updated README again. Tell me if you want more details. |
Thanks for the contribution 👍 |
Add Daikin Emura FVXS hardware support.
Update set_control_info (GET http request capability on firmware 2.6.0)