We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
netatmo_custom/custom_components/netatmo/pyatmo/account.py
Line 141 in a01e719
params should be set with the area coordinates. This seems to work:
async def async_update_public_weather(self, area_id: str) -> None: """Retrieve status data from /getpublicdata""" params = { "lat_ne": self.public_weather_areas[area_id].location.lat_ne, "lon_ne": self.public_weather_areas[area_id].location.lon_ne, "lat_sw": self.public_weather_areas[area_id].location.lat_sw, "lon_sw": self.public_weather_areas[area_id].location.lon_sw, "filtering": ("true" if self.public_weather_areas[area_id].filtering else "false"), } await self._async_update_data(_GETPUBLIC_DATA, tag="body", params=params, area_id=area_id)
The text was updated successfully, but these errors were encountered:
With this fix, I don't get wind strength and gust strength anymore. Is that expected? Cheers.
Sorry, something went wrong.
No, that is a bug. Thanks for the fix. I'll look into it.
Gust strength is disabled by default but can be enabled manually.
No branches or pull requests
netatmo_custom/custom_components/netatmo/pyatmo/account.py
Line 141 in a01e719
params should be set with the area coordinates. This seems to work:
The text was updated successfully, but these errors were encountered: