|
| 1 | +#!/usr/bin/python |
| 2 | + |
| 3 | +import time |
| 4 | +from Adafruit_I2C import Adafruit_I2C |
| 5 | + |
| 6 | +# =========================================================================== |
| 7 | +# ADS1x15 Class |
| 8 | +# =========================================================================== |
| 9 | + |
| 10 | +class ADS1x15: |
| 11 | + i2c = None |
| 12 | + |
| 13 | + # IC Identifiers |
| 14 | + __IC_ADS1015 = 0x00 |
| 15 | + __IC_ADS1115 = 0x01 |
| 16 | + |
| 17 | + # Pointer Register |
| 18 | + __ADS1015_REG_POINTER_MASK = 0x03 |
| 19 | + __ADS1015_REG_POINTER_CONVERT = 0x00 |
| 20 | + __ADS1015_REG_POINTER_CONFIG = 0x01 |
| 21 | + __ADS1015_REG_POINTER_LOWTHRESH = 0x02 |
| 22 | + __ADS1015_REG_POINTER_HITHRESH = 0x03 |
| 23 | + |
| 24 | + # Config Register |
| 25 | + __ADS1015_REG_CONFIG_OS_MASK = 0x8000 |
| 26 | + __ADS1015_REG_CONFIG_OS_SINGLE = 0x8000 # Write: Set to start a single-conversion |
| 27 | + __ADS1015_REG_CONFIG_OS_BUSY = 0x0000 # Read: Bit = 0 when conversion is in progress |
| 28 | + __ADS1015_REG_CONFIG_OS_NOTBUSY = 0x8000 # Read: Bit = 1 when device is not performing a conversion |
| 29 | + |
| 30 | + __ADS1015_REG_CONFIG_MUX_MASK = 0x7000 |
| 31 | + __ADS1015_REG_CONFIG_MUX_DIFF_0_1 = 0x0000 # Differential P = AIN0, N = AIN1 (default) |
| 32 | + __ADS1015_REG_CONFIG_MUX_DIFF_0_3 = 0x1000 # Differential P = AIN0, N = AIN3 |
| 33 | + __ADS1015_REG_CONFIG_MUX_DIFF_1_3 = 0x2000 # Differential P = AIN1, N = AIN3 |
| 34 | + __ADS1015_REG_CONFIG_MUX_DIFF_2_3 = 0x3000 # Differential P = AIN2, N = AIN3 |
| 35 | + __ADS1015_REG_CONFIG_MUX_SINGLE_0 = 0x4000 # Single-ended AIN0 |
| 36 | + __ADS1015_REG_CONFIG_MUX_SINGLE_1 = 0x5000 # Single-ended AIN1 |
| 37 | + __ADS1015_REG_CONFIG_MUX_SINGLE_2 = 0x6000 # Single-ended AIN2 |
| 38 | + __ADS1015_REG_CONFIG_MUX_SINGLE_3 = 0x7000 # Single-ended AIN3 |
| 39 | + |
| 40 | + __ADS1015_REG_CONFIG_PGA_MASK = 0x0E00 |
| 41 | + __ADS1015_REG_CONFIG_PGA_6_144V = 0x0000 # +/-6.144V range |
| 42 | + __ADS1015_REG_CONFIG_PGA_4_096V = 0x0200 # +/-4.096V range |
| 43 | + __ADS1015_REG_CONFIG_PGA_2_048V = 0x0400 # +/-2.048V range (default) |
| 44 | + __ADS1015_REG_CONFIG_PGA_1_024V = 0x0600 # +/-1.024V range |
| 45 | + __ADS1015_REG_CONFIG_PGA_0_512V = 0x0800 # +/-0.512V range |
| 46 | + __ADS1015_REG_CONFIG_PGA_0_256V = 0x0A00 # +/-0.256V range |
| 47 | + |
| 48 | + __ADS1015_REG_CONFIG_MODE_MASK = 0x0100 |
| 49 | + __ADS1015_REG_CONFIG_MODE_CONTIN = 0x0000 # Continuous conversion mode |
| 50 | + __ADS1015_REG_CONFIG_MODE_SINGLE = 0x0100 # Power-down single-shot mode (default) |
| 51 | + |
| 52 | + __ADS1015_REG_CONFIG_DR_MASK = 0x00E0 |
| 53 | + __ADS1015_REG_CONFIG_DR_128SPS = 0x0000 # 128 samples per second |
| 54 | + __ADS1015_REG_CONFIG_DR_250SPS = 0x0020 # 250 samples per second |
| 55 | + __ADS1015_REG_CONFIG_DR_490SPS = 0x0040 # 490 samples per second |
| 56 | + __ADS1015_REG_CONFIG_DR_920SPS = 0x0050 # 920 samples per second |
| 57 | + __ADS1015_REG_CONFIG_DR_1600SPS = 0x0080 # 1600 samples per second (default) |
| 58 | + __ADS1015_REG_CONFIG_DR_2400SPS = 0x00A0 # 2400 samples per second |
| 59 | + __ADS1015_REG_CONFIG_DR_3300SPS = 0x00C0 # 3300 samples per second |
| 60 | + |
| 61 | + __ADS1015_REG_CONFIG_CMODE_MASK = 0x0010 |
| 62 | + __ADS1015_REG_CONFIG_CMODE_TRAD = 0x0000 # Traditional comparator with hysteresis (default) |
| 63 | + __ADS1015_REG_CONFIG_CMODE_WINDOW = 0x0010 # Window comparator |
| 64 | + |
| 65 | + __ADS1015_REG_CONFIG_CPOL_MASK = 0x0008 |
| 66 | + __ADS1015_REG_CONFIG_CPOL_ACTVLOW = 0x0000 # ALERT/RDY pin is low when active (default) |
| 67 | + __ADS1015_REG_CONFIG_CPOL_ACTVHI = 0x0008 # ALERT/RDY pin is high when active |
| 68 | + |
| 69 | + __ADS1015_REG_CONFIG_CLAT_MASK = 0x0004 # Determines if ALERT/RDY pin latches once asserted |
| 70 | + __ADS1015_REG_CONFIG_CLAT_NONLAT = 0x0000 # Non-latching comparator (default) |
| 71 | + __ADS1015_REG_CONFIG_CLAT_LATCH = 0x0004 # Latching comparator |
| 72 | + |
| 73 | + __ADS1015_REG_CONFIG_CQUE_MASK = 0x0003 |
| 74 | + __ADS1015_REG_CONFIG_CQUE_1CONV = 0x0000 # Assert ALERT/RDY after one conversions |
| 75 | + __ADS1015_REG_CONFIG_CQUE_2CONV = 0x0001 # Assert ALERT/RDY after two conversions |
| 76 | + __ADS1015_REG_CONFIG_CQUE_4CONV = 0x0002 # Assert ALERT/RDY after four conversions |
| 77 | + __ADS1015_REG_CONFIG_CQUE_NONE = 0x0003 # Disable the comparator and put ALERT/RDY in high state (default) |
| 78 | + |
| 79 | + # Constructor |
| 80 | + def __init__(self, address=0x48, ic=__IC_ADS1015, debug=False): |
| 81 | + self.i2c = Adafruit_I2C(address) |
| 82 | + self.address = address |
| 83 | + self.debug = debug |
| 84 | + |
| 85 | + # Make sure the IC specified is valid |
| 86 | + if ((ic < self.__IC_ADS1015) | (ic > self.__IC_ADS1115)): |
| 87 | + if (self.debug): |
| 88 | + print "ADS1x15: Invalid IC. Using the ADS1015 by default" |
| 89 | + self.ic = __IC_ADS1015 |
| 90 | + else: |
| 91 | + self.ic = ic |
| 92 | + |
| 93 | + def readADCSingleEnded(self, channel=0): |
| 94 | + "Gets a single-ended ADC reading from the specified channel (1 bit = 3mV)" |
| 95 | + # Default to channel 0 with invalid channel, or return -1? |
| 96 | + if (channel > 3): |
| 97 | + if (self.debug): |
| 98 | + print "ADS1x15: Invalid channel specified: %d" % channel |
| 99 | + return -1 |
| 100 | + |
| 101 | + # Start with default values |
| 102 | + config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \ |
| 103 | + self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \ |
| 104 | + self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \ |
| 105 | + self.__ADS1015_REG_CONFIG_CMODE_TRAD | \ |
| 106 | + self.__ADS1015_REG_CONFIG_DR_1600SPS | \ |
| 107 | + self.__ADS1015_REG_CONFIG_MODE_SINGLE |
| 108 | + |
| 109 | + # Set PGA/voltage range (1 bit = 3mV using the default range) |
| 110 | + config |= self.__ADS1015_REG_CONFIG_PGA_6_144V # +/- 6.144V range |
| 111 | + |
| 112 | + if channel == 3: |
| 113 | + config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3 |
| 114 | + elif channel == 2: |
| 115 | + config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2 |
| 116 | + elif channel == 1: |
| 117 | + config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1 |
| 118 | + else: |
| 119 | + config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0 |
| 120 | + |
| 121 | + # Set 'start single-conversion' bit |
| 122 | + config |= self.__ADS1015_REG_CONFIG_OS_SINGLE |
| 123 | + |
| 124 | + # Write config register to the ADC |
| 125 | + bytes = [(config >> 8) & 0xFF, config & 0xFF] |
| 126 | + self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes) |
| 127 | + |
| 128 | + # Wait for the ADC conversion to complete |
| 129 | + time.sleep(0.001) |
| 130 | + |
| 131 | + # Read the conversion results |
| 132 | + result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2) |
| 133 | + if (self.ic == self.__IC_ADS1015): |
| 134 | + # Shift right 4 bits for the 12-bit ADS1015 |
| 135 | + return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 ) |
| 136 | + else: |
| 137 | + # Return 16-bit value for the ADS1115 |
| 138 | + return ( (result[0] << 8) | (result[1] & 0xFF) ) |
| 139 | + |
| 140 | + def readADCDifferential01(self): |
| 141 | + "Gets a differential ADC reading from channels 0 and 1" |
| 142 | + |
| 143 | + def readADCDifferential23(self): |
| 144 | + "Gets a differential ADC reading from channels 2 and 3" |
| 145 | + |
| 146 | + def startSingleEndedComparator(self, channel, threshold): |
| 147 | + "Starts the comparator in single-ended mode on the specified channel" |
| 148 | + |
| 149 | + def getLastConversionResults(self): |
| 150 | + "Returns the last ADC conversion result" |
| 151 | + |
0 commit comments