ESP32 RTC memory.

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
andermutu99
Posts: 18
Joined: Thu Sep 27, 2018 10:19 am

ESP32 RTC memory.

Post by andermutu99 » Wed Oct 31, 2018 9:00 am

Dear Community;

I am using an ESP32 as a low power data gathering station. I want to store the data I collect in the RTC memory until RTC memory is full. The problem is that I don't know how can I check whether it's full or not. For store data I use the following code:

import machine

rtc = machine.RTC()

rtc.memory(rtc.memory() + 'New data. ')

Thanks a lot.

Ander.

Post Reply