got the output check stuff actually compiling and closer to working
diff --git a/frc971/input/sensor_receiver.cc b/frc971/input/sensor_receiver.cc
index 3def0d7..199df99 100644
--- a/frc971/input/sensor_receiver.cc
+++ b/frc971/input/sensor_receiver.cc
@@ -71,7 +71,8 @@
 }
 
 double sonar_translate(uint32_t in) {
-  return static_cast<double>(in) / 1000.0 * 2.0;
+  return static_cast<double>(in) * 10.0 /*us/tick*/ / 147.0 /*in/us*/ *
+         0.0254 /*m/in*/;
 }
 
 double hall_translate(const constants::ShifterHallEffect &k, uint16_t in_low,