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:
commit
0810df908b
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue