Merge pull request #52 from ares-est/master

modify examples/ads1x15_ads1115_simpletest.py and add a comment for specific address selection
This commit is contained in:
Carter Nelson 2020-02-16 12:14:33 -08:00 committed by GitHub
commit 0810df908b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,8 @@ i2c = busio.I2C(board.SCL, board.SDA)
# Create the ADC object using the I2C bus
ads = ADS.ADS1115(i2c)
# you can specify an I2C adress instead of the default 0x48
#ads = ADS.ADS1115(i2c, address=0x49)
# Create single-ended input on channel 0
chan = AnalogIn(ads, ADS.P0)