structure7 / garageMonitor

Keeping an eye on the garage
MIT License
0 stars 0 forks source link

Terminal logging of events #3

Open structure7 opened 8 years ago

structure7 commented 8 years ago

Probably need some mySQL magic. Blynk terminal isn't great. Or... a way to assign a random Arduino device to "log" things onto an SD card and serve to the web... read-only / text style.

So...

if (thing happens)
{
   Blynk.action;
   Tweet;
   SDcardLog;
}

I wonder if I have to bridge devices to (at least simply) share info or maybe just some HTTP operations on the local network.

Something like: https://startingelectronics.org/software/arduino/web-server/01-log-data/