forked from adafruit/Adafruit-Raspberry-Pi-Python-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathads1015_example.py
35 lines (29 loc) · 1.29 KB
/
ads1015_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
from Adafruit_ADS1x15 import ADS1x15
# ============================================================================
# Example Code
# ============================================================================
ADS1015 = 0x00 # 12-bit ADC
ADS1115 = 0x01 # 16-bit ADC
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# ToDo: Change the value below depending on which chip you're using!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ADS_Current = ADS1115
# Initialise the ADC using the default mode (use default I2C address)
adc = ADS1x15(ic=ADS_Current)
# Read channel 0 in single-ended mode
result = adc.readADCSingleEnded(0)
if ADS_Current == ADS1015:
# For ADS1015 at max range (+/-6.144V) 1 bit = 3mV (12-bit values)
print "Channel 0 = %.3f V" % (result * 0.003)
else:
# For ADS1115 at max range (+/-6.144V) 1-bit = 0.1875mV (16-bit values)
print "Channel 0 = %.3f V" % (result * 0.0001875)
# Read channel 1 in single-ended mode
result = adc.readADCSingleEnded(1)
if ADS_Current == ADS1015:
# For ADS1015 at max range (+/-6.144V) 1 bit = 3mV (12-bit values)
print "Channel 1 = %.3f V" % (result * 0.003)
else:
# For ADS1115 at max range (+/-6.144V) 1-bit = 0.1875mV (16-bit values)
print "Channel 1 = %.3f V" % (result * 0.0001875)