sparkfun / Qwiic_BME280_Py

Python module for the qwiic bme280 sensor
MIT License
11 stars 3 forks source link

Example on main page is outdated and does not run #2

Closed Dario503 closed 10 months ago

Dario503 commented 3 years ago

if mySensor.isConnected() == False:

is not correct. Current syntax is:

if mySensor.connected == False:

Needs to be updated.