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 c8ea12c commit c9d4e3eCopy full SHA for c9d4e3e
Sensor_Plotting_With_Mu_CircuitPython/pulse.py
@@ -22,7 +22,7 @@
22
for s in range(NUM_OVERSAMPLE):
23
oversample += float(light.value)
24
# and save the average from the oversamples
25
- samples[i] = oversample / NUM_OVERSAMPLE # Find the aver
+ samples[i] = oversample / NUM_OVERSAMPLE # Find the average
26
27
mean = sum(samples) / float(len(samples)) # take the average
28
print((samples[i]-mean,)) # 'center' the reading
0 commit comments