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 74360e7 commit 4fa94aeCopy full SHA for 4fa94ae
examples/vl6180x_simpletest.py
@@ -17,7 +17,9 @@
17
18
# Create sensor instance.
19
sensor = adafruit_vl6180x.VL6180X(i2c)
20
-# sensor = adafruit_vl6180x.VL6180X(i2c) # This would add a +10 millimeter offset to measurements:
+# You can add an offset to distance measurements here (e.g. calibration)
21
+# Swapping for the following would add a +10 millimeter offset to measurements:
22
+# sensor = adafruit_vl6180x.VL6180X(i2c, offset=10)
23
24
# Main loop prints the range and lux every second:
25
while True:
0 commit comments