Skip to content

Commit c9d4e3e

Browse files
committed
quick update
1 parent c8ea12c commit c9d4e3e

File tree

1 file changed

+1
-1
lines changed
  • Sensor_Plotting_With_Mu_CircuitPython

1 file changed

+1
-1
lines changed

Sensor_Plotting_With_Mu_CircuitPython/pulse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
for s in range(NUM_OVERSAMPLE):
2323
oversample += float(light.value)
2424
# and save the average from the oversamples
25-
samples[i] = oversample / NUM_OVERSAMPLE # Find the aver
25+
samples[i] = oversample / NUM_OVERSAMPLE # Find the average
2626

2727
mean = sum(samples) / float(len(samples)) # take the average
2828
print((samples[i]-mean,)) # 'center' the reading

0 commit comments

Comments
 (0)