Fixed issue where all sensor data was shown as 0
Former-commit-id: f656f227c83153b3df76f2083011b1b936c041b6
This commit is contained in:
parent
9fd1537edb
commit
4bea6adf89
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ public class PCOverviewHttpPage implements HttpPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
//add this data point to list
|
//add this data point to list
|
||||||
list.add(new PowerData(timestampStart, data/1000+"", username));
|
list.add(new PowerData(timestampStart, ""+ (data/1000.0), username));
|
||||||
|
|
||||||
//update previous end timestamp
|
//update previous end timestamp
|
||||||
previousTimestampEnd = timestampEnd;
|
previousTimestampEnd = timestampEnd;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue