We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d63f4 commit b87c853Copy full SHA for b87c853
src/Extensions/AdcToVolt.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.ComponentModel;
3
using System.Linq;
4
using System.Reactive.Linq;
@@ -58,7 +58,7 @@ public IObservable<Timestamped<AnalogVoltData>> Process(IObservable<Timestamped<
58
private static float AdcToVoltConverter(short adcValue)
59
{
60
// Full adc scale 4096 -> 3.3/1.6 = 2.0625V
61
- // In pratice, HW supports max 5V which translates
+ // In practice, HW supports max 5V which translates
62
// to = 15/39 (given by resistor) * 5V = 1.9231 VMax
63
// input to the ADC.
64
// 1.9231V/2.0625V * 4095 = 3818 @ 5V analog input
0 commit comments