From e5c38a85a8c06a66f8a5d4d95579b8f4e9a3c538 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 20 Jan 2020 15:04:28 +0000 Subject: [PATCH] Fix PSI --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index eee821f..2ded946 100644 --- a/index.html +++ b/index.html @@ -143,7 +143,7 @@ this.speed.set(this.currentSpeed); this.currentRPM=d.rpm; this.rpm.set(this.currentRPM); - this.currentPSI=parseFloat(d.psi)/2.036.toFixed(2); + this.currentPSI=parseFloat(d.psi/2.036).toFixed(2); this.psi.set(this.currentPSI); } }