Solar Array and home energy dashboard.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
296 B

  1. socket.onopen = function() {
  2. // connected
  3. }
  4. var msgNumbs = {
  5. p: "#production",
  6. ng: "#netgrid",
  7. };
  8. socket.onmessage = function(m) {
  9. var msg = m.data.split(" ");
  10. if (msg[0] in msgNumbs) {
  11. // production value
  12. var num = parseFloat(msg[1]);
  13. $(msgNumbs[msg[0]]).text(num.toString());
  14. }
  15. }