Skip to content

Commit ecd081c

Browse files
authored
Merge pull request #23 from adafruit/fix_module_caps
s/adafruit_CCS811/adafruit_ccs811/ in simple test
2 parents ae781ae + 1b958bc commit ecd081c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ccs811_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from board import SCL, SDA
44
import busio
55

6-
import adafruit_CCS811
6+
import adafruit_ccs811
77

88
i2c_bus = busio.I2C(SCL, SDA)
99

10-
ccs = adafruit_CCS811.CCS811(i2c_bus)
10+
ccs = adafruit_ccs811.CCS811(i2c_bus)
1111

1212
#wait for the sensor to be ready and calibrate the thermistor
1313
while not ccs.data_ready:

0 commit comments

Comments
 (0)