![Dragino PAB2 Скачать руководство пользователя страница 22](http://html1.mh-extra.com/html/dragino/pab2/pab2_user-manual_2527139022.webp)
Console.println("error opening datalog.csv");
}
delay(15000);
//Write every 15 seconds
}
// getTimeStamp function return a string with the time stamp
// Yun Shield will call the Linux "date" command and get the time stamp
String getTimeStamp() {
String result;
Process time;
// date is a command line utility to get the date and the time
// in different formats depending on the additional parameter
time.begin("date");
time.addParameter("+%D-%T");
// parameters: D for the complete date mm/dd/yy
// T for the time hh:mm:ss
time.run();
// run the command
// read the output of the command
while(time.available()>0) {
char c = time.read();
if(c != '\n')
= c;
}
return result;
}
Screen Shot:
IDE Window
Winscp Window
w w w . e k t
2
. c o m
Electronics
Katrangi
Trading
Содержание PAB2
Страница 1: ...Yun Shield User Manual VERSION 1 1 w w w e k t 2 c o m Electronics Katrangi Trading...
Страница 20: ...Screen Shot Xively Dashboard w w w e k t 2 c o m Electronics Katrangi Trading...
Страница 28: ...Yun Shield Quick Start Guide VERSION 1 0 w w w e k t 2 c o m Electronics Katrangi Trading...
Страница 39: ...Screen Shot Xively Dashboard w w w e k t 2 c o m Electronics Katrangi Trading...