Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/ccs811_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from board import SCL, SDA
import busio

import adafruit_CCS811
import adafruit_ccs811

i2c_bus = busio.I2C(SCL, SDA)

ccs = adafruit_CCS811.CCS811(i2c_bus)
ccs = adafruit_ccs811.CCS811(i2c_bus)

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