initial tests made using Terry's stand with a 2500psi sensor
authorBdale Garbee <bdale@gag.com>
Thu, 27 Apr 2017 21:27:49 +0000 (15:27 -0600)
committerBdale Garbee <bdale@gag.com>
Thu, 27 Apr 2017 21:27:49 +0000 (15:27 -0600)
altoslib/AltosEepromFireTwo.java

index 2e464f98acf78bedaf0effb49d0d5d577b14f20a..d83f3452008e5022f7fc7821b71c73c75ce22f1b 100644 (file)
@@ -65,7 +65,7 @@ public class AltosEepromFireTwo extends AltosEeprom {
                if (v < 0.5) v = 0.5;
                if (v > 4.5) v = 4.5;
 
-               double  psi = (v - 0.5) / 4.0 * 1600.0;
+               double  psi = (v - 0.5) / 4.0 * 2500.0;
                return AltosConvert.psi_to_pa(psi);
        }