Examples - Datalogger (simple) |
Top Previous Next |
//----------------------------------------------------------------------------- // Check how many values in each record
// Make an entry in the datalogger // Check how many records present in the datalogger
// Set read position to the oldest (first) record
// Advance read position (backward in time)
// Modify the current record DebugFmt(Message:="(f) LogReader.year = \1", v1:=LogReader.year); DebugFmt(Message:="(f) LogReader.month = \1", v1:=LogReader.month); DebugFmt(Message:="(f) LogReader.day = \1", v1:=LogReader.day); DebugFmt(Message:="(f) LogReader.hour = \1", v1:=LogReader.hour); DebugFmt(Message:="(f) LogReader.minute = \1",v1:=LogReader.minute); DebugFmt(Message:="(f) LogReader.second = \1",v1:=LogReader.second); BEGIN
END; |