Skip to content

Commit 55747fc

Browse files
committed
update examples and readme
1 parent ccf87f3 commit 55747fc

File tree

6 files changed

+38
-52
lines changed

6 files changed

+38
-52
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,24 @@ Single Ended
6767
.. code-block:: python
6868
6969
import time
70+
7071
import board
71-
import busio
72-
import adafruit_ads1x15.ads1015 as ADS
73-
from adafruit_ads1x15.analog_in import AnalogIn
72+
73+
from adafruit_ads1x15 import ADS1015, AnalogIn, ads1x15
7474
7575
# Create the I2C bus
76-
i2c = busio.I2C(board.SCL, board.SDA)
76+
i2c = board.I2C()
7777
7878
# Create the ADC object using the I2C bus
79-
ads = ADS.ADS1015(i2c)
79+
ads = ADS1015(i2c)
8080
8181
# Create single-ended input on channel 0
82-
chan = AnalogIn(ads, ADS.P0)
82+
chan = AnalogIn(ads, ads1x15.Pin.A0)
8383
8484
# Create differential input between channel 0 and 1
85-
#chan = AnalogIn(ads, ADS.P0, ADS.P1)
85+
# chan = AnalogIn(ads, ads1x15.Pin.A0, ads1x15.Pin.A1)
8686
87-
print("{:>5}\t{:>5}".format('raw', 'v'))
87+
print("{:>5}\t{:>5}".format("raw", "v"))
8888
8989
while True:
9090
print("{:>5}\t{:>5.3f}".format(chan.value, chan.voltage))

examples/ads1x15_ads1115_simpletest.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,22 @@
44
import time
55

66
import board
7-
import busio
87

9-
import adafruit_ads1x15.ads1115 as ADS
10-
from adafruit_ads1x15.analog_in import AnalogIn
8+
from adafruit_ads1x15 import ADS1115, AnalogIn, ads1x15
119

1210
# Create the I2C bus
13-
i2c = busio.I2C(board.SCL, board.SDA)
11+
i2c = board.I2C()
1412

1513
# Create the ADC object using the I2C bus
16-
ads = ADS.ADS1115(i2c)
14+
ads = ADS1115(i2c)
1715
# you can specify an I2C adress instead of the default 0x48
1816
# ads = ADS.ADS1115(i2c, address=0x49)
1917

2018
# Create single-ended input on channel 0
21-
chan = AnalogIn(ads, ADS.P0)
19+
chan = AnalogIn(ads, ads1x15.Pin.A0)
2220

2321
# Create differential input between channel 0 and 1
24-
# chan = AnalogIn(ads, ADS.P0, ADS.P1)
22+
# chan = AnalogIn(ads, ads1x15.Pin.A0, ads1x15.Pin.A1)
2523

2624
print("{:>5}\t{:>5}".format("raw", "v"))
2725

examples/ads1x15_comparator_example.py

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,35 @@
44
import time
55

66
import board
7-
import busio
87
import countio
98

10-
import adafruit_ads1x15.ads1015 as ADS
11-
12-
# import adafruit_ads1x15.ads1115 as ADS
13-
from adafruit_ads1x15.ads1x15 import Comp_Latch, Comp_Mode, Comp_Polarity, Mode
14-
from adafruit_ads1x15.analog_in import AnalogIn
9+
from adafruit_ads1x15 import ADS1015, AnalogIn, ads1x15
1510

1611
# Create the I2C bus
17-
i2c = busio.I2C(board.SCL, board.SDA)
12+
i2c = board.I2C()
1813

1914
# Create the ADS object
20-
ads = ADS.ADS1015(i2c)
15+
ads = ADS1015(i2c)
2116
# ads = ADS.ADS1115(i2c)
2217

23-
# Create a single-ended channel on Pin 0
18+
# Create a single-ended channel on Pin A0
2419
# Max counts for ADS1015 = 2047
2520
# ADS1115 = 32767
26-
chan = AnalogIn(ads, ADS.P0)
21+
chan = AnalogIn(ads, ads1x15.Pin.A0)
2722

2823
# Create Interrupt-driven input to track comparator changes
2924
int_pin = countio.Counter(board.GP9, edge=countio.Edge.RISE)
3025

3126
# Set ADC to continuously read new data
32-
ads.mode = Mode.CONTINUOUS
27+
ads.mode = ads1x15.Mode.CONTINUOUS
3328
# Set comparator to assert after 1 ADC conversion
3429
ads.comparator_queue_length = 1
3530
# Set comparator to use traditional threshold instead of window
36-
ads.comparator_mode = Comp_Mode.TRADITIONAL
31+
ads.comparator_mode = ads1x15.Comp_Mode.TRADITIONAL
3732
# Set comparator output to de-assert if readings no longer above threshold
38-
ads.comparator_latch = Comp_Latch.NONLATCHING
33+
ads.comparator_latch = ads1x15.Comp_Latch.NONLATCHING
3934
# Set comparator output to logic LOW when asserted
40-
ads.comparator_polarity = Comp_Polarity.ACTIVE_LOW
35+
ads.comparator_polarity = ads1x15.Comp_Polarity.ACTIVE_LOW
4136
# Gain should be explicitly set to ensure threshold values are calculated correctly
4237
ads.gain = 1
4338
# Set comparator low threshold to 2V

examples/ads1x15_fast_read.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
import board
77
import busio
88

9-
import adafruit_ads1x15.ads1015 as ADS
10-
from adafruit_ads1x15.ads1x15 import Mode
11-
from adafruit_ads1x15.analog_in import AnalogIn
9+
from adafruit_ads1x15 import ADS1015, AnalogIn, ads1x15
1210

1311
# Data collection setup
1412
RATE = 3300
@@ -21,18 +19,18 @@
2119
i2c = busio.I2C(board.SCL, board.SDA, frequency=1000000)
2220

2321
# Create the ADC object using the I2C bus
24-
ads = ADS.ADS1015(i2c)
22+
ads = ADS1015(i2c)
2523

2624
# Create single-ended input on channel 0
27-
chan0 = AnalogIn(ads, ADS.P0)
25+
chan = AnalogIn(ads, ads1x15.Pin.A0)
2826

2927
# ADC Configuration
30-
ads.mode = Mode.CONTINUOUS
28+
ads.mode = ads1x15.Mode.CONTINUOUS
3129
ads.data_rate = RATE
3230

3331
# First ADC channel read in continuous mode configures device
3432
# and waits 2 conversion cycles
35-
_ = chan0.value
33+
_ = chan.value
3634

3735
sample_interval = 1.0 / ads.data_rate
3836

@@ -51,7 +49,7 @@
5149
pass
5250

5351
# Read conversion value for ADC channel
54-
data[i] = chan0.value
52+
data[i] = chan.value
5553

5654
# Loop timing
5755
time_last_sample = time.monotonic()

examples/ads1x15_gain_example.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,20 @@
44
import time
55

66
import board
7-
import busio
87

9-
# import adafruit_ads1x15.ads1015 as ADS
10-
import adafruit_ads1x15.ads1115 as ADS
11-
from adafruit_ads1x15.analog_in import AnalogIn
8+
from adafruit_ads1x15 import ADS1115, AnalogIn, ads1x15
129

1310
# Create the I2C bus
14-
i2c = busio.I2C(board.SCL, board.SDA)
11+
i2c = board.I2C()
1512

1613
# Create the ADS object
1714
# ads = ADS.ADS1015(i2c)
18-
ads = ADS.ADS1115(i2c)
15+
ads = ADS1115(i2c)
1916

20-
# Create a single-ended channel on Pin 0
17+
# Create a single-ended channel on Pin A0
2118
# Max counts for ADS1015 = 2047
2219
# ADS1115 = 32767
23-
chan = AnalogIn(ads, ADS.P0)
20+
chan = AnalogIn(ads, ads1x15.Pin.A0)
2421

2522
# The ADS1015 and ADS1115 both have the same gain options.
2623
#

examples/ads1x15_simpletest.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,20 @@
44
import time
55

66
import board
7-
import busio
87

9-
import adafruit_ads1x15.ads1015 as ADS
10-
from adafruit_ads1x15.analog_in import AnalogIn
8+
from adafruit_ads1x15 import ADS1015, AnalogIn, ads1x15
119

1210
# Create the I2C bus
13-
i2c = busio.I2C(board.SCL, board.SDA)
11+
i2c = board.I2C()
1412

1513
# Create the ADC object using the I2C bus
16-
ads = ADS.ADS1015(i2c)
14+
ads = ADS1015(i2c)
1715

1816
# Create single-ended input on channel 0
19-
chan = AnalogIn(ads, ADS.P0)
17+
chan = AnalogIn(ads, ads1x15.Pin.A0)
2018

2119
# Create differential input between channel 0 and 1
22-
# chan = AnalogIn(ads, ADS.P0, ADS.P1)
20+
# chan = AnalogIn(ads, ads1x15.Pin.A0, ads1x15.Pin.A1)
2321

2422
print("{:>5}\t{:>5}".format("raw", "v"))
2523

0 commit comments

Comments
 (0)