Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. //update graphThis variable
  2. graphThis.push([current, data.cpu]);
  3. graphCPUTemp.push([current, data.cpuTemp]);
  4. if (graphCPUTemp.length == 31) {
  5. graphCPUTemp.shift();
  6. graphThis.shift();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement