How to save sensor data output into excel using esp32

Hi,
I’m currently working with esp32 and using wireless temperature and humidity to read temperature and humidity values every second. I have to save these values into a database in real time. I don’t know how to save the data/result in excel.

can anyone suggest me something better to do it.

Thanx in advance.

Hi @adam1,

If you need to save the readings into a database, maybe the easiest way to do this is to use a multicontainer application where one service reads the data from the temperature sensor and then connects to a database service running in another service.

Depending on the device you’re using, you should be able to use one of the Postgres variants on Dockerhub, for example https://hub.docker.com/_/postgres.

Hope this helps!

Best regards, Heds