From 0c9302afb345497d523ab9fcb92f7e87ee81acc4 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 3 Aug 2023 17:30:41 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5279c43..c80aacb 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ struct WeatherStationUpdate { The encoded format should be: - Each message starts with a byte with the value 0x02. - The following byte contains multiple feature flags: - -> bit 0 is set: Using °C instead of °F for the temperature - -> bit 1 is set: The message contains temperature information - -> bit 2 is set: The message contains humidity information + - bit 0 is set: Using °C instead of °F for the temperature + - bit 1 is set: The message contains temperature information + - bit 2 is set: The message contains humidity information - Temperature as a big-endian 32-bit floating-point number - Relative Humidity as UInt8 in the range of [0, 100] - CRC-32 with the default polynomial for the whole message (incl. 0x02 prefix).