diff --git a/Documentation/pycardium/utime.rst b/Documentation/pycardium/utime.rst index 3fdbf4eff26f8e55f739d6039d4a09d8a5732f20..7b62db053c187880bd0a25451d6ec90a52d6b4ca 100644 --- a/Documentation/pycardium/utime.rst +++ b/Documentation/pycardium/utime.rst @@ -25,16 +25,18 @@ alarm. .. py:function:: time() - Return the current timestamp in seconds since 2000-01-01 00:00. + Return the current timestamp in seconds since 2000-01-01 00:00 in + the local timezone. .. py:function:: set_time(secs) - Sets the time to ``secs`` seconds since 2000-01-01 00:00. + Sets the time to ``secs`` seconds since 2000-01-01 00:00 in the local + timezone. .. py:function:: set_unix_time(secs) Sets the time to ``secs`` seconds since 1970-01-01 00:00 UTC. - This corresponds a regular Unix timestamp which can be obtained + This corresponds to a regular Unix timestamp which can be obtained by running ``date +%s`` in a command line or ``int(time.time())`` in Python. diff --git a/pycardium/modules/utime.c b/pycardium/modules/utime.c index a3a1173f67ed8f8f5b291be96f333dad0aa5d796..ef9b3da65d2af7a55799ec879857469117859291 100644 --- a/pycardium/modules/utime.c +++ b/pycardium/modules/utime.c @@ -19,8 +19,8 @@ static mp_obj_t time_set_time(mp_obj_t secs) { - uint64_t timestamp = - mp_obj_get_int(secs) * 1000ULL + EPOCH_OFFSET * 1000ULL; + uint64_t timestamp = mp_obj_get_int(secs) * 1000ULL + + EPOCH_OFFSET * 1000ULL + TZONE_OFFSET; epic_rtc_set_milliseconds(timestamp); return mp_const_none; }