summaryrefslogtreecommitdiff
path: root/altoslib
diff options
context:
space:
mode:
authorBdale Garbee <bdale@gag.com>2017-04-27 15:27:49 -0600
committerBdale Garbee <bdale@gag.com>2017-05-11 10:00:45 -0600
commit9d05af2147c0eb6dc63c4d4dc1d9a3c31f480aef (patch)
tree01ae7ed5f87f5f84fcc40666b6899296ef61eb9c /altoslib
parentf753ad3b9d0f3dc9794e5dd097063aab6cf9bdc4 (diff)
initial tests made using Terry's stand with a 2500psi sensor
Diffstat (limited to 'altoslib')
-rw-r--r--altoslib/AltosEepromRecordFireTwo.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altoslib/AltosEepromRecordFireTwo.java b/altoslib/AltosEepromRecordFireTwo.java
index 809247c7..8c03cd56 100644
--- a/altoslib/AltosEepromRecordFireTwo.java
+++ b/altoslib/AltosEepromRecordFireTwo.java
@@ -57,7 +57,7 @@ public class AltosEepromRecordFireTwo extends AltosEepromRecord {
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);
}