Open-Acidification / TankController

Arduino and web GUI source code for the Open Acidification tank controller (pH-stat unit).
https://open-acidification.github.io/
Mozilla Public License 2.0
8 stars 33 forks source link

Setup to allow a remote log #466

Closed jgfoster closed 2 months ago

jgfoster commented 2 months ago

This creates a space for a remote log; we'll add to it in a subsequent PR.

jgfoster commented 2 months ago

The original PR had the following:

// Logging intervals (1 min, 1 sec, 1 min)
#define INFO_LOGGING_INTERVAL 60000
#define SD_LOGGING_INTERVAL 1000
#define SERIAL_LOGGING_INTERVAL 60000

Instead of "INFO", "SD", and "SERIAL" I'm calling the logs "REMOTE", "DATA", and "SERIAL". Subsequent work will keep the same design (writing to the remote server as a separate step). I'm just breaking it into steps where we have tests passing with each increment.