From e375c9d890b8afd8a9fd4ebeff6f92396a79a303 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Sat, 18 Feb 2023 16:30:00 +0100 Subject: [PATCH] main: update timezone to berlin :) --- src/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 4b53f75..992224a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -435,10 +435,11 @@ void setup() { Log.notice(u8"🐞 I am built for %d LEDs running on %dmA", HardwareConfig::MAX_LED_NUM, PSU_MILLIAMPS); Log.notice(u8"📡 Platform %s version %s", Platform::name(), Platform::version()); - Log.notice(u8"Setting timezone to -7 (PST)"); - Platform::setTimezone(-7); + Log.notice(u8"Setting timezone to +2 (CEST)"); + Platform::setTimezone(+2); + + Log.notice(u8"Setting up platform..."); - Log.notice(u8" Setting up platform..."); Platform::setup(); Platform::bootSplash();