Gunnar Kreitz

Results 10 comments of Gunnar Kreitz

The ones I think I've figured out this far are: - Byte 0: always 1 (version number perhaps?) - Byte 1: humidity (divide by 2) - Byte 2-3: ?? -...

I implemented something _really_ hackish to get the data into my local home-assistant, https://github.com/gkreitz/homeassistant-airthings/blob/master/airthings.py . Seems to be reasonably stable at least. A few things I noticed when building that...

I think that it sets all bits to 1 as some sort of error condition for individual measurements, so if you get those, treat it as an error. I didn’t...

Have you considered adding something like `SafeString` (shamelessly borrowed from Django, https://docs.djangoproject.com/en/4.2/_modules/django/utils/safestring/ ), a small wrapper class around a string to indicate that the user has taken responsibility for escaping,...

Happened to me too, on a 64-bit hass.io. Same error message in the logs. Seems to be the issue MichMich/MagicMirror#1462. Apparently MagicMirror depends on a version of electron without arm64...

Happy you like the project, and thanks for the pointer. Unfortunately, I'm unlikely to add support for Grohe Blue as I don't have one myself, and Grohe offers no development...

Great that it wasn't intentional! I took a stab at a PR for fixing the issue.

If anyone else runs into this, a workaround that worked for us is to set one of the environment variables from https://github.com/dart-lang/sdk/blob/fae7752e9e5087aa51d8eaaf19aa949a0337ca8b/pkg/dartdev/lib/src/unified_analytics.dart#L121 , e.g., `BOT=true` to trick `dart` into thinking...

https://github.com/pypa/pip/commit/24f4600851bbb3d7f22aed0ba6b1e2dcc4973412 seems to be the pip commit that broke this. It replaces `@lru_cache` with a custom cache that can no longer be cleared (afaict). It seems to me like a...