From 5e00c5c8ed1283f3345f268ff208fefb33569893 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Fri, 11 Sep 2026 00:31:11 -0400 Subject: [PATCH] [Issue #2] - Updating README with timezone info --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 46c8b8b..d7f150a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,26 @@ To help with debugging/testing deployments, I also used these components: * [TinyGo](https://tinygo.org/getting-started/install/) - TinyGo installation guide +### Configuration + +While **Pico Clock** supports timezones, the TinyGo environment doesn't include the IANA database for timezones. This means that each timezone has to be manually added in the code. *If you would like a timezone added, open an issue and I will look into adding it*. + +Currently the list of supported timezones is: + +* `UTC` - No timezone offset +* `US/Eastern` - Dynamic DST timezone for US Eastern; alias `ET` +* `US/Central` - Dynamic DST timezone for US Eastern; alias `CT` +* `US/Mountain` - Dynamic DST timezone for US Eastern; alias `MT` +* `US/Pacific` - Dynamic DST timezone for US Eastern; alias `PT` +* `EST` - Static set -5 offset (no DST change). +* `EDT` - Static set -4 offset (no DST change). +* `CST` - Static set -6 offset (no DST change). +* `CDT` - Static set -4 offset (no DST change). +* `MST` - Static set -7 offset (no DST change). +* `MDT` - Static set -5 offset (no DST change). +* `PST` - Static set -8 offset (no DST change). +* `PDT` - Static set -7 offset (no DST change). + ### Steps 1. Clone this git repository `git clone https://git.metaunix.net/BitGoblin/pico-weather`.