Hello everyone! I am working on an air quality monitoring project that uses various sensors to measure air quality and upload it to a cloud.
I need a way such that when connection to the cloud is unavailable, the ESP32 would be able to store data from sensors on its flash memory for uploading to cloud whenever connection is restored. Is this possible? What libraries can be used for this purpose? Are there algorithms on the internet available for this?
RAM is different from flash memory right? Upon searching on the internet about storing data on esp32's ram, only ways to store data on flash memory is being presented. Can you provide a link or some kind of instruction on how to do this?
If you collect a large amount of data and frequently and you have a spare spi interface you might consider an external memory such as a SD card or FRAM module
ohh i get what you are saying now. Basically you want me to push the values measured by the sensors to an array directly via the code I made on arduino IDE and that would be automatically be stored on the RAM? Another question is what language does arduino IDE use, is it c or c++? sorry im kinda new on this.