The ESP32 has a real time clock implemented on chip. This will however only work as long as the ESP32 is powered. It may therefore be interesting to employ an external RTC like the DS1307, backed up with a battery, to keep time even when the ESP32 is powered off or in deep sleep mode.
Getting the current (GMT) time from the internet is easy when using the ntptime module. We can make use of this to setup our RTC with the correct time.
The module ntptime allows you to get the current UTC time from the NTP server. It's function settime() sets the time of the ESP32 real time clock. Write a module that connects to the Internet through Wifi and that sets up the ESP32 with the current UTC time
Check with the ESP32 RTC module that the time was correctly set.
If you do not have Internet access you can still set up the ESP32 RTC manually.
Ask the user for the current date and time and set the real time clock in the ESP32 correspondingly. Read back the time a little later and print it out. Use a parser similar to the one we wrote in session 1, exercise 2, for the calculator to check user input.
Be careful about the parameters passed into rtc.datetime((currentTime)). currentTime is a Python tuple with the following members: yyyy mm dd ww hh mm ss us where
In my solution I wrote a module esp32RTC with the following functions:
Here is a screen dumps showing a session controlling the ESP32 RTC:
The disadvantage of getting the current time from the ESP32 RTC is that time is lost when the ESP32 is powered off. The DS1307 RTC however is batttery backed and time is kept even when the rest of the system is shut down.
Here is a photo of the DS1307 RTC shield:
As you can see, it features the DS1307 RTC chip itself but also an SD card reader. This board can therefore be used to generate a time stamp of the measurement, which can be saved, together with the measurement data, on an SD card file. Since SD cards have very high capacity, data can be taken over many hours without filling the file system.
Do the same thing as exercise 1 and 2 but use the DS1307 RTC instead of the ESP32 internal RTC.
You will need the DS1307 data sheet and the ds1307 driver
found at github.
Write a module with 2 functions synchronizing the clocks:
Write a script to mount the SD card on the RTC and data logger module on "/sd". Create a directory /sd/data and check that is has been created as expected.
Write a script that
import uftpd
After that you can transfer the file with ftp to your PC
Concerning the time stamp there is a difference between MicroPython and CPython: MicroPython starts counting at 2000-01-01 while CPython uses Unix epoch, which starts at 1970-01-01.
timeStampCPython = timeStampMicroPython + time.UNIX_TIME which is the constant 946681200
MPY epoch is 2000-01-01 instead of unix epoch, which is 1970-01-01.
I | Attachment | History | Action | Size | Date | Who | Comment |
---|---|---|---|---|---|---|---|
![]() |
cetTime.py.txt | r1 | manage | 0.8 K | 2020-05-25 - 10:00 | UliRaich | |
![]() |
dayOfWeek.py.txt | r1 | manage | 1.7 K | 2020-05-25 - 10:00 | UliRaich | |
![]() |
esp32RTC.png | r1 | manage | 43.5 K | 2020-05-06 - 20:01 | UliRaich | |
![]() |
esp32RTC.py.txt | r1 | manage | 4.5 K | 2020-05-25 - 10:00 | UliRaich | |
![]() |
rtc-1.png | r1 | manage | 112.9 K | 2020-05-25 - 17:47 | UliRaich |