ESP32-Wrover does have SPI or SDMMC, that will require additional purchase of modules for the microSD or other SD physical card module.
The need to create proper data acquisition (DAQ) using ESP32-Wrover will be easier by leveraging free service offered by ThingSpeak from Mathlab.
From the previous project https://chow.karmeng.my/2025/03/28/programming-esp32-wrover-with-dht22-am2302-humidity-and-temperature-sensor/ , I am intent to make use of the light sensor. L1B01 light module to collect data of ambience light.



Hence, the data will be collected are :
- temperature
- humidity
- analog read of L1B01 light sensor
- digital read of L1B01 light sensor
The generated data from the DHT and L1B01 sensor that will be published into ThingSpeak are:
- humidity
- temperature
- heat index
- lightRaw
- lightDigital
- lightVoltage
- lightLux
Coincidentally, ThingSpeak limits 8 data channels from a single channel allocated to a user ThingSpeak free account.

The interesting aspect of ThingSpeak, is it allows uploaded data to be downloaded as CSV.

The downloaded csv incorporates timestamp, hence there is no need to include timestamp in your controller programming if you are uploading the data dedicated into ThingSpeak. The only problem will be creating a script to automate renaming of fields from the downloaded csv. Or removal of other metadata for example latitude, longitude etc.

With Deepseek as my copilot, in less than 1 hour I am able to start uploading data in my home environment into ThingSpeak.

Using DeepSeek as copilot, I have programmed the ESP32-Wrover to perform the following:
- Collect data from DHT and lightSensor
- Tabulate data into CSV on COM console
- Send the tabulated data into ThingSpeak
- WiFi switching function that recognize multiple WiFi AP
Many thanks to https://www.linkedin.com/in/ts-terrence-yen-7666252b/ for introducing me to ThingSpeak. This allows ESP32 data acquisition to be simpler and cost effective. At least this is simple for a person that are already exposed to web APIs rather than learning SPI or SDMMC.
