From: Bdale Garbee Date: Thu, 27 Apr 2017 21:27:49 +0000 (-0600) Subject: initial tests made using Terry's stand with a 2500psi sensor X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=52416b0b6eb0be420371099d8d8899b03fe5e38a;p=fw%2Faltos initial tests made using Terry's stand with a 2500psi sensor --- diff --git a/altoslib/AltosEepromFireTwo.java b/altoslib/AltosEepromFireTwo.java index 2e464f98..d83f3452 100644 --- a/altoslib/AltosEepromFireTwo.java +++ b/altoslib/AltosEepromFireTwo.java @@ -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); }