esp32 sensors remote logging with c++
depnds on the very easy to set up cpp-httplib library.
This repo implements an bmp280 and oled on an esp32 and then logs the output remotely with C++ to a csv file. The columns of the csv file are time stamp, temperature, altitude, pressure.
tst_esp32_coms: Remote side (client) C++ code. This has a makelists.txt file. If you want to compile just the code, you need to link the ssl and crypot, so for example run: g++ -o ssl_client tst_comms2.cpp -lssl -lcrypto
esp32_local_sensor: Esp32 local sketch.