Hey,
I was just wondering how you would make it so when logging data it doesn't save all the data on one line, but instead its put on a new line each new entry, like hitting enter/return every time? currently it displays it like this:
"2016/12/12 15:30 55.77V"2016/12/12 15:30 55.77V"2016/12/12 15:30 55.77V"2016/12/12 15:30 55.77V"2016/12/12 15:30 55.77V"2016/12/12 15:30 55.77V
I don't know how to get it to this:
"2016/12/12 15:30 55.77V
"2016/12/12 15:30 55.77V
"2016/12/12 15:30 55.77V
"2016/12/12 15:30 55.77V
"2016/12/12 15:30 55.77V
"2016/12/12 15:30 55.77V
logfile.print('"');
logfile.print(now.year(), DEC);
logfile.print("/");
logfile.print(now.month(), DEC);
logfile.print("/");
logfile.print(now.day(), DEC);
logfile.print(" ");
logfile.print(now.hour(), DEC);
logfile.print(":");
logfile.print(now.minute(), DEC);
logfile.print(" ");
logfile.print(voltage * 11.132, 2);
logfile.print("V");