diff --git a/stabilizer/src/pounder/mod.rs b/stabilizer/src/pounder/mod.rs index 5b9822f..093cfd2 100644 --- a/stabilizer/src/pounder/mod.rs +++ b/stabilizer/src/pounder/mod.rs @@ -401,7 +401,8 @@ impl PowerMeasurementInterface for PounderDevices { _ => return Err(Error::InvalidChannel), }; - // Convert analog percentage to voltage. - Ok(adc_scale * 3.3) + // Convert analog percentage to voltage. Note that the ADC uses an external 2.048V analog + // reference. + Ok(adc_scale * 2.048) } }