diff --git a/index.html b/index.html index 72a5d8e..97b63f2 100644 --- a/index.html +++ b/index.html @@ -140,8 +140,11 @@ gotWsMessage: function(e) { var d=e.data; this.currentSpeed=d.speed; + this.speed.set(this.currentSpeed); this.currentRPM=d.rpm; + this.rpm.set(this.currentRPM); this.currentPSI=parseFloat(d.psi)/2.036.toFixed(2); + this.psi.set(this.currentPSI); } }