Skip to content

Commit b87c853

Browse files
authored
Fix typo
1 parent 59d63f4 commit b87c853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Extensions/AdcToVolt.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.ComponentModel;
33
using System.Linq;
44
using System.Reactive.Linq;
@@ -58,7 +58,7 @@ public IObservable<Timestamped<AnalogVoltData>> Process(IObservable<Timestamped<
5858
private static float AdcToVoltConverter(short adcValue)
5959
{
6060
// Full adc scale 4096 -> 3.3/1.6 = 2.0625V
61-
// In pratice, HW supports max 5V which translates
61+
// In practice, HW supports max 5V which translates
6262
// to = 15/39 (given by resistor) * 5V = 1.9231 VMax
6363
// input to the ADC.
6464
// 1.9231V/2.0625V * 4095 = 3818 @ 5V analog input

0 commit comments

Comments
 (0)