From 1b958bc0f5d9b2522c4d2b8e2d9aeee59d2a6d23 Mon Sep 17 00:00:00 2001 From: Brennen Bearnes Date: Tue, 14 Aug 2018 10:27:20 -0600 Subject: [PATCH] s/adafruit_CCS811/adafruit_ccs811/ in simple test Just fixes an import failure. The module is still not, to my knowledge, in a working state. --- examples/ccs811_simpletest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ccs811_simpletest.py b/examples/ccs811_simpletest.py index df9740e..1c00563 100644 --- a/examples/ccs811_simpletest.py +++ b/examples/ccs811_simpletest.py @@ -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: