diff options
Diffstat (limited to 'dcf77_gps.lua')
-rw-r--r-- | dcf77_gps.lua | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/dcf77_gps.lua b/dcf77_gps.lua index 1b46cba..dad17f1 100644 --- a/dcf77_gps.lua +++ b/dcf77_gps.lua @@ -227,14 +227,13 @@ function parse_data(data) valid_times=valid_times+1 --print("Total "..valid_times.." valid times and "..total_times-valid_times.." invalid times") - --if string.sub(data,18,18)==1 then + if string.sub(data,19,19)=="1" then --print("Subtracting 1 hour for CET timezone") - --hour=hour-1 - --else + hour=hour-1 + else --print("Subtracting 2 hours for CEST timezone") - --hour=hour-2 - --end - hour=hour-1 + hour=hour-2 + end if hour<0 then hour=hour+24 day=day-1 |