I am working with ESP32 and AHT25 sensor to get temperature and humidity values. I want to store that temperature and humidity values in EEPROM. I don't know much about storing data's in EEPROM. Can anyone please tell me how to do this?
And also I need to fetch that data from EEPROM and update into EXCEL file. I am creating GUI using Tkinter. My need is if I create a button in my GUI like DOWNLOAD EXCEL, when I click this button the temperature, humidity data's from excel file (EEPROM Data updated in EXCEL File) should be download. I think it's a big process. Still I have no idea about how to do this. Can anyone guide me?
Since I do not have enough reputation for clarifying comments, I will try to present the task. There are two temperature and humidity sensors, there is an EEPROM device. I can only assume that this is an arduino. We need the sensor data to get into excel.
EEPROM has 10,000 to 100,000 rewrite cycles. It will just block after a while. Therefore, we will not write anything into it.
I would send data directly to the computer via the COM port. step by step:
When it works, you can add a graphical interface