aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2024-01-02 18:06:44 +0100
committerJF <JF002@users.noreply.github.com>2024-01-04 13:00:01 +0100
commit95e2f9e701158cc637d2c70990439b74bd518acc (patch)
treecf538830f0fbb5afcd405c73a916b7ac9e48471f
parentb4ff1f9ca24fa7ca7d89000cbd1402d120b0054e (diff)
Simple Weather Service : Fix timestamp
Mention that the timestamp should be expressed in localtime time.
-rw-r--r--doc/SimpleWeatherService.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SimpleWeatherService.md b/doc/SimpleWeatherService.md
index f8e41c34..1d5524b7 100644
--- a/doc/SimpleWeatherService.md
+++ b/doc/SimpleWeatherService.md
@@ -28,7 +28,7 @@ The byte array must contain the following data:
- [0] : Message type = `0`
- [1] : Message version = `0`
- - [2][3][4][5][6][7][8][9] : Timestamp (64 bits UNIX timestamp, number of seconds elapsed since 1 JAN 1970)
+ - [2][3][4][5][6][7][8][9] : Timestamp (64 bits UNIX timestamp, number of seconds elapsed since 1 JAN 1970) in local time (the same timezone than the one used to set the time)
- [10, 11] : Current temperature (°C * 100)
- [12, 13] : Minimum temperature (°C * 100)
- [14, 15] : Maximum temperature (°C * 100)
@@ -50,7 +50,7 @@ The byte array must contain the following data:
- [0] : Message type = `1`
- [1] : Message version = `0`
- - [2][3][4][5][6][7][8][9] : Timestamp (64 bits UNIX timestamp, number of seconds elapsed since 1 JAN 1970)
+ - [2][3][4][5][6][7][8][9] : Timestamp (64 bits UNIX timestamp, number of seconds elapsed since 1 JAN 1970) in local time (the same timezone than the one used to set the time)
- [10] Number of days (Max 5, fields for unused days should be set to `0`)
- [11,12] Day 0 Minimum temperature (°C * 100)
- [13,14] Day 0 Maximum temperature (°C * 100)