-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update Daikin heat pump date and time #7
Comments
Hi, def set_unit_datetime(self, d: datetime.datetime):
"""Sets the current date of the unit. XXX Doesn't work rn"""
date_str = datetime.datetime.strftime(d, self.DATETIME_FMT)
payload = {
"con": date_str,
"cnf": "text/plain:0",
}
d = self._requestValueHP("/0/DateTime", "/", payload) |
Request is d = self._requestValueHP("/0/DateTime", "/", payload) But in fact that doesn't change the problem... |
So looking at the reverse engineered code of the phone app, if the The correct route would be On my heat pump, however, the field does not exist and indeed it does not change the time given the command. Hopefully it works on yours... I've release 0.3.1 for those that the setting works |
With this function, ok we can get the date/time of the PAC (Format 20231029T180710Z)
Is it possible in reverse, to write (instead of reading) a date/time group in the PAC ? And how... ?
Thank-you
The text was updated successfully, but these errors were encountered: