diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..6d764cfa
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,56 @@
+# Python specific .gitignore
+# GitHub recommended entries from https://github.com/github/gitignore
+
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+bin/
+build/
+develop-eggs/
+dist/
+eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.cache
+nosetests.xml
+coverage.xml
+
+# Translations
+*.mo
+
+# Mr Developer
+.mr.developer.cfg
+.project
+.pydevproject
+
+# Rope
+.ropeproject
+
+# Django stuff:
+*.log
+*.pot
+
+# Sphinx documentation
+docs/_build/
diff --git a/Adafruit_ADS1x15/Adafruit_ADS1x15.py b/Adafruit_ADS1x15/Adafruit_ADS1x15.py
deleted file mode 100644
index 32141f4b..00000000
--- a/Adafruit_ADS1x15/Adafruit_ADS1x15.py
+++ /dev/null
@@ -1,722 +0,0 @@
-#!/usr/bin/python
-
-import time
-import smbus
-from Adafruit_I2C import Adafruit_I2C
-
-# ===========================================================================
-# ADS1x15 Class
-#
-# Originally written by K. Townsend, Adafruit (https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code/tree/master/Adafruit_ADS1x15)
-# Updates and new functions implementation by Pedro Villanueva, 03/2013.
-# The only error in the original code was in line 57:
-# __ADS1015_REG_CONFIG_DR_920SPS = 0x0050
-# should be
-# __ADS1015_REG_CONFIG_DR_920SPS = 0x0060
-#
-# NOT IMPLEMENTED: Conversion ready pin, page 15 datasheet.
-# ===========================================================================
-
-class ADS1x15:
- i2c = None
-
- # IC Identifiers
- __IC_ADS1015 = 0x00
- __IC_ADS1115 = 0x01
-
- # Pointer Register
- __ADS1015_REG_POINTER_MASK = 0x03
- __ADS1015_REG_POINTER_CONVERT = 0x00
- __ADS1015_REG_POINTER_CONFIG = 0x01
- __ADS1015_REG_POINTER_LOWTHRESH = 0x02
- __ADS1015_REG_POINTER_HITHRESH = 0x03
-
- # Config Register
- __ADS1015_REG_CONFIG_OS_MASK = 0x8000
- __ADS1015_REG_CONFIG_OS_SINGLE = 0x8000 # Write: Set to start a single-conversion
- __ADS1015_REG_CONFIG_OS_BUSY = 0x0000 # Read: Bit = 0 when conversion is in progress
- __ADS1015_REG_CONFIG_OS_NOTBUSY = 0x8000 # Read: Bit = 1 when device is not performing a conversion
-
- __ADS1015_REG_CONFIG_MUX_MASK = 0x7000
- __ADS1015_REG_CONFIG_MUX_DIFF_0_1 = 0x0000 # Differential P = AIN0, N = AIN1 (default)
- __ADS1015_REG_CONFIG_MUX_DIFF_0_3 = 0x1000 # Differential P = AIN0, N = AIN3
- __ADS1015_REG_CONFIG_MUX_DIFF_1_3 = 0x2000 # Differential P = AIN1, N = AIN3
- __ADS1015_REG_CONFIG_MUX_DIFF_2_3 = 0x3000 # Differential P = AIN2, N = AIN3
- __ADS1015_REG_CONFIG_MUX_SINGLE_0 = 0x4000 # Single-ended AIN0
- __ADS1015_REG_CONFIG_MUX_SINGLE_1 = 0x5000 # Single-ended AIN1
- __ADS1015_REG_CONFIG_MUX_SINGLE_2 = 0x6000 # Single-ended AIN2
- __ADS1015_REG_CONFIG_MUX_SINGLE_3 = 0x7000 # Single-ended AIN3
-
- __ADS1015_REG_CONFIG_PGA_MASK = 0x0E00
- __ADS1015_REG_CONFIG_PGA_6_144V = 0x0000 # +/-6.144V range
- __ADS1015_REG_CONFIG_PGA_4_096V = 0x0200 # +/-4.096V range
- __ADS1015_REG_CONFIG_PGA_2_048V = 0x0400 # +/-2.048V range (default)
- __ADS1015_REG_CONFIG_PGA_1_024V = 0x0600 # +/-1.024V range
- __ADS1015_REG_CONFIG_PGA_0_512V = 0x0800 # +/-0.512V range
- __ADS1015_REG_CONFIG_PGA_0_256V = 0x0A00 # +/-0.256V range
-
- __ADS1015_REG_CONFIG_MODE_MASK = 0x0100
- __ADS1015_REG_CONFIG_MODE_CONTIN = 0x0000 # Continuous conversion mode
- __ADS1015_REG_CONFIG_MODE_SINGLE = 0x0100 # Power-down single-shot mode (default)
-
- __ADS1015_REG_CONFIG_DR_MASK = 0x00E0
- __ADS1015_REG_CONFIG_DR_128SPS = 0x0000 # 128 samples per second
- __ADS1015_REG_CONFIG_DR_250SPS = 0x0020 # 250 samples per second
- __ADS1015_REG_CONFIG_DR_490SPS = 0x0040 # 490 samples per second
- __ADS1015_REG_CONFIG_DR_920SPS = 0x0060 # 920 samples per second
- __ADS1015_REG_CONFIG_DR_1600SPS = 0x0080 # 1600 samples per second (default)
- __ADS1015_REG_CONFIG_DR_2400SPS = 0x00A0 # 2400 samples per second
- __ADS1015_REG_CONFIG_DR_3300SPS = 0x00C0 # 3300 samples per second (also 0x00E0)
-
- __ADS1115_REG_CONFIG_DR_8SPS = 0x0000 # 8 samples per second
- __ADS1115_REG_CONFIG_DR_16SPS = 0x0020 # 16 samples per second
- __ADS1115_REG_CONFIG_DR_32SPS = 0x0040 # 32 samples per second
- __ADS1115_REG_CONFIG_DR_64SPS = 0x0060 # 64 samples per second
- __ADS1115_REG_CONFIG_DR_128SPS = 0x0080 # 128 samples per second
- __ADS1115_REG_CONFIG_DR_250SPS = 0x00A0 # 250 samples per second (default)
- __ADS1115_REG_CONFIG_DR_475SPS = 0x00C0 # 475 samples per second
- __ADS1115_REG_CONFIG_DR_860SPS = 0x00E0 # 860 samples per second
-
- __ADS1015_REG_CONFIG_CMODE_MASK = 0x0010
- __ADS1015_REG_CONFIG_CMODE_TRAD = 0x0000 # Traditional comparator with hysteresis (default)
- __ADS1015_REG_CONFIG_CMODE_WINDOW = 0x0010 # Window comparator
-
- __ADS1015_REG_CONFIG_CPOL_MASK = 0x0008
- __ADS1015_REG_CONFIG_CPOL_ACTVLOW = 0x0000 # ALERT/RDY pin is low when active (default)
- __ADS1015_REG_CONFIG_CPOL_ACTVHI = 0x0008 # ALERT/RDY pin is high when active
-
- __ADS1015_REG_CONFIG_CLAT_MASK = 0x0004 # Determines if ALERT/RDY pin latches once asserted
- __ADS1015_REG_CONFIG_CLAT_NONLAT = 0x0000 # Non-latching comparator (default)
- __ADS1015_REG_CONFIG_CLAT_LATCH = 0x0004 # Latching comparator
-
- __ADS1015_REG_CONFIG_CQUE_MASK = 0x0003
- __ADS1015_REG_CONFIG_CQUE_1CONV = 0x0000 # Assert ALERT/RDY after one conversions
- __ADS1015_REG_CONFIG_CQUE_2CONV = 0x0001 # Assert ALERT/RDY after two conversions
- __ADS1015_REG_CONFIG_CQUE_4CONV = 0x0002 # Assert ALERT/RDY after four conversions
- __ADS1015_REG_CONFIG_CQUE_NONE = 0x0003 # Disable the comparator and put ALERT/RDY in high state (default)
-
-
- # Dictionaries with the sampling speed values
- # These simplify and clean the code (avoid the abuse of if/elif/else clauses)
- spsADS1115 = {
- 8:__ADS1115_REG_CONFIG_DR_8SPS,
- 16:__ADS1115_REG_CONFIG_DR_16SPS,
- 32:__ADS1115_REG_CONFIG_DR_32SPS,
- 64:__ADS1115_REG_CONFIG_DR_64SPS,
- 128:__ADS1115_REG_CONFIG_DR_128SPS,
- 250:__ADS1115_REG_CONFIG_DR_250SPS,
- 475:__ADS1115_REG_CONFIG_DR_475SPS,
- 860:__ADS1115_REG_CONFIG_DR_860SPS
- }
- spsADS1015 = {
- 128:__ADS1015_REG_CONFIG_DR_128SPS,
- 250:__ADS1015_REG_CONFIG_DR_250SPS,
- 490:__ADS1015_REG_CONFIG_DR_490SPS,
- 920:__ADS1015_REG_CONFIG_DR_920SPS,
- 1600:__ADS1015_REG_CONFIG_DR_1600SPS,
- 2400:__ADS1015_REG_CONFIG_DR_2400SPS,
- 3300:__ADS1015_REG_CONFIG_DR_3300SPS
- }
- # Dictionariy with the programable gains
- pgaADS1x15 = {
- 6144:__ADS1015_REG_CONFIG_PGA_6_144V,
- 4096:__ADS1015_REG_CONFIG_PGA_4_096V,
- 2048:__ADS1015_REG_CONFIG_PGA_2_048V,
- 1024:__ADS1015_REG_CONFIG_PGA_1_024V,
- 512:__ADS1015_REG_CONFIG_PGA_0_512V,
- 256:__ADS1015_REG_CONFIG_PGA_0_256V
- }
-
-
- # Constructor
- def __init__(self, address=0x48, ic=__IC_ADS1015, debug=False):
- # Depending on if you have an old or a new Raspberry Pi, you
- # may need to change the I2C bus. Older Pis use SMBus 0,
- # whereas new Pis use SMBus 1. If you see an error like:
- # 'Error accessing 0x48: Check your I2C address '
- # change the SMBus number in the initializer below!
- self.i2c = Adafruit_I2C(address)
- self.address = address
- self.debug = debug
-
- # Make sure the IC specified is valid
- if ((ic < self.__IC_ADS1015) | (ic > self.__IC_ADS1115)):
- if (self.debug):
- print "ADS1x15: Invalid IC specfied: %h" % ic
- return -1
- else:
- self.ic = ic
-
- # Set pga value, so that getLastConversionResult() can use it,
- # any function that accepts a pga value must update this.
- self.pga = 6144
-
-
- def readADCSingleEnded(self, channel=0, pga=6144, sps=250):
- "Gets a single-ended ADC reading from the specified channel in mV. \
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see datasheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
-
- # With invalid channel return -1
- if (channel > 3):
- if (self.debug):
- print "ADS1x15: Invalid channel specified: %d" % channel
- return -1
-
- # Disable comparator, Non-latching, Alert/Rdy active low
- # traditional comparator, single-shot mode
- config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
- self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
- self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
- self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
- self.__ADS1015_REG_CONFIG_MODE_SINGLE
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set the channel to be converted
- if channel == 3:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
- elif channel == 2:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
- elif channel == 1:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
- else:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
-
- # Set 'start single-conversion' bit
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write config register to the ADC
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
- # Wait for the ADC conversion to complete
- # The minimum delay depends on the sps: delay >= 1/sps
- # We add 0.1ms to be sure
- delay = 1.0/sps+0.0001
- time.sleep(delay)
-
- # Read the conversion results
- result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
- if (self.ic == self.__IC_ADS1015):
- # Shift right 4 bits for the 12-bit ADS1015 and convert to mV
- return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
- else:
- # Return a mV value for the ADS1115
- # (Take signed values into account as well)
- val = (result[0] << 8) | (result[1])
- if val > 0x7FFF:
- return (val - 0xFFFF)*pga/32768.0
- else:
- return ( (result[0] << 8) | (result[1]) )*pga/32768.0
-
-
- def readADCDifferential(self, chP=0, chN=1, pga=6144, sps=250):
- "Gets a differential ADC reading from channels chP and chN in mV. \
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see data sheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
-
- # Disable comparator, Non-latching, Alert/Rdy active low
- # traditional comparator, single-shot mode
- config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
- self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
- self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
- self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
- self.__ADS1015_REG_CONFIG_MODE_SINGLE
-
- # Set channels
- if ( (chP == 0) & (chN == 1) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
- elif ( (chP == 0) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
- elif ( (chP == 2) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
- elif ( (chP == 1) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
- else:
- if (self.debug):
- print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
- return -1
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init()) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set 'start single-conversion' bit
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write config register to the ADC
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
- # Wait for the ADC conversion to complete
- # The minimum delay depends on the sps: delay >= 1/sps
- # We add 0.1ms to be sure
- delay = 1.0/sps+0.0001
- time.sleep(delay)
-
- # Read the conversion results
- result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
- if (self.ic == self.__IC_ADS1015):
- # Shift right 4 bits for the 12-bit ADS1015 and convert to mV
- return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
- else:
- # Return a mV value for the ADS1115
- # (Take signed values into account as well)
- val = (result[0] << 8) | (result[1])
- if val > 0x7FFF:
- return (val - 0xFFFF)*pga/32768.0
- else:
- return ( (result[0] << 8) | (result[1]) )*pga/32768.0
-
-
- def readADCDifferential01(self, pga=6144, sps=250):
- "Gets a differential ADC reading from channels 0 and 1 in mV\
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see data sheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
- return self.readADCDifferential(0, 1, pga, sps)
-
-
- def readADCDifferential03(self, pga=6144, sps=250):
- "Gets a differential ADC reading from channels 0 and 3 in mV \
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see data sheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
- return self.readADCDifferential(0, 3, pga, sps)
-
-
- def readADCDifferential13(self, pga=6144, sps=250):
- "Gets a differential ADC reading from channels 1 and 3 in mV \
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see data sheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
- return self.__readADCDifferential(1, 3, pga, sps)
-
-
- def readADCDifferential23(self, pga=6144, sps=250):
- "Gets a differential ADC reading from channels 2 and 3 in mV \
- The sample rate for this mode (single-shot) can be used to lower the noise \
- (low sps) or to lower the power consumption (high sps) by duty cycling, \
- see data sheet page 14 for more info. \
- The pga must be given in mV, see page 13 for the supported values."
- return self.readADCDifferential(2, 3, pga, sps)
-
-
- def startContinuousConversion(self, channel=0, pga=6144, sps=250):
- "Starts the continuous conversion mode and returns the first ADC reading \
- in mV from the specified channel. \
- The sps controls the sample rate. \
- The pga must be given in mV, see datasheet page 13 for the supported values. \
- Use getLastConversionResults() to read the next values and \
- stopContinuousConversion() to stop converting."
-
- # Default to channel 0 with invalid channel, or return -1?
- if (channel > 3):
- if (self.debug):
- print "ADS1x15: Invalid channel specified: %d" % channel
- return -1
-
- # Disable comparator, Non-latching, Alert/Rdy active low
- # traditional comparator, continuous mode
- # The last flag is the only change we need, page 11 datasheet
- config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
- self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
- self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
- self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
- self.__ADS1015_REG_CONFIG_MODE_CONTIN
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init()) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set the channel to be converted
- if channel == 3:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
- elif channel == 2:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
- elif channel == 1:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
- else:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
-
- # Set 'start single-conversion' bit to begin conversions
- # No need to change this for continuous mode!
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write config register to the ADC
- # Once we write the ADC will convert continously
- # we can read the next values using getLastConversionResult
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
- # Wait for the ADC conversion to complete
- # The minimum delay depends on the sps: delay >= 1/sps
- # We add 0.5ms to be sure
- delay = 1.0/sps+0.0005
- time.sleep(delay)
-
- # Read the conversion results
- result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
- if (self.ic == self.__IC_ADS1015):
- # Shift right 4 bits for the 12-bit ADS1015 and convert to mV
- return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
- else:
- # Return a mV value for the ADS1115
- # (Take signed values into account as well)
- val = (result[0] << 8) | (result[1])
- if val > 0x7FFF:
- return (val - 0xFFFF)*pga/32768.0
- else:
- return ( (result[0] << 8) | (result[1]) )*pga/32768.0
-
- def startContinuousDifferentialConversion(self, chP=0, chN=1, pga=6144, sps=250):
- "Starts the continuous differential conversion mode and returns the first ADC reading \
- in mV as the difference from the specified channels. \
- The sps controls the sample rate. \
- The pga must be given in mV, see datasheet page 13 for the supported values. \
- Use getLastConversionResults() to read the next values and \
- stopContinuousConversion() to stop converting."
-
- # Disable comparator, Non-latching, Alert/Rdy active low
- # traditional comparator, continuous mode
- # The last flag is the only change we need, page 11 datasheet
- config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
- self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
- self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
- self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
- self.__ADS1015_REG_CONFIG_MODE_CONTIN
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init()) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set channels
- if ( (chP == 0) & (chN == 1) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
- elif ( (chP == 0) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
- elif ( (chP == 2) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
- elif ( (chP == 1) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
- else:
- if (self.debug):
- print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
- return -1
-
- # Set 'start single-conversion' bit to begin conversions
- # No need to change this for continuous mode!
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write config register to the ADC
- # Once we write the ADC will convert continously
- # we can read the next values using getLastConversionResult
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
- # Wait for the ADC conversion to complete
- # The minimum delay depends on the sps: delay >= 1/sps
- # We add 0.5ms to be sure
- delay = 1.0/sps+0.0005
- time.sleep(delay)
-
- # Read the conversion results
- result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
- if (self.ic == self.__IC_ADS1015):
- # Shift right 4 bits for the 12-bit ADS1015 and convert to mV
- return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
- else:
- # Return a mV value for the ADS1115
- # (Take signed values into account as well)
- val = (result[0] << 8) | (result[1])
- if val > 0x7FFF:
- return (val - 0xFFFF)*pga/32768.0
- else:
- return ( (result[0] << 8) | (result[1]) )*pga/32768.0
-
-
- def stopContinuousConversion(self):
- "Stops the ADC's conversions when in continuous mode \
- and resets the configuration to its default value."
- # Write the default config register to the ADC
- # Once we write, the ADC will do a single conversion and
- # enter power-off mode.
- config = 0x8583 # Page 18 datasheet.
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
- return True
-
- def getLastConversionResults(self):
- "Returns the last ADC conversion result in mV"
- # Read the conversion results
- result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
- if (self.ic == self.__IC_ADS1015):
- # Shift right 4 bits for the 12-bit ADS1015 and convert to mV
- return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*self.pga/2048.0
- else:
- # Return a mV value for the ADS1115
- # (Take signed values into account as well)
- val = (result[0] << 8) | (result[1])
- if val > 0x7FFF:
- return (val - 0xFFFF)*self.pga/32768.0
- else:
- return ( (result[0] << 8) | (result[1]) )*self.pga/32768.0
-
-
- def startSingleEndedComparator(self, channel, thresholdHigh, thresholdLow, \
- pga=6144, sps=250, \
- activeLow=True, traditionalMode=True, latching=False, \
- numReadings=1):
- "Starts the comparator mode on the specified channel, see datasheet pg. 15. \
- In traditional mode it alerts (ALERT pin will go low) when voltage exceeds \
- thresholdHigh until it falls below thresholdLow (both given in mV). \
- In window mode (traditionalMode=False) it alerts when voltage doesn't lie\
- between both thresholds.\
- In latching mode the alert will continue until the conversion value is read. \
- numReadings controls how many readings are necessary to trigger an alert: 1, 2 or 4.\
- Use getLastConversionResults() to read the current value (which may differ \
- from the one that triggered the alert) and clear the alert pin in latching mode. \
- This function starts the continuous conversion mode. The sps controls \
- the sample rate and the pga the gain, see datasheet page 13. "
-
- # With invalid channel return -1
- if (channel > 3):
- if (self.debug):
- print "ADS1x15: Invalid channel specified: %d" % channel
- return -1
-
- # Continuous mode
- config = self.__ADS1015_REG_CONFIG_MODE_CONTIN
-
- if (activeLow==False):
- config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVHI
- else:
- config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW
-
- if (traditionalMode==False):
- config |= self.__ADS1015_REG_CONFIG_CMODE_WINDOW
- else:
- config |= self.__ADS1015_REG_CONFIG_CMODE_TRAD
-
- if (latching==True):
- config |= self.__ADS1015_REG_CONFIG_CLAT_LATCH
- else:
- config |= self.__ADS1015_REG_CONFIG_CLAT_NONLAT
-
- if (numReadings==4):
- config |= self.__ADS1015_REG_CONFIG_CQUE_4CONV
- elif (numReadings==2):
- config |= self.__ADS1015_REG_CONFIG_CQUE_2CONV
- else:
- config |= self.__ADS1015_REG_CONFIG_CQUE_1CONV
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init()) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- if ( (sps not in self.spsADS1015) & self.debug):
- print "ADS1x15: Invalid sps specified: %d, using 1600sps" % sps
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid sps specified: %d, using 250sps" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % pga
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set the channel to be converted
- if channel == 3:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
- elif channel == 2:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
- elif channel == 1:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
- else:
- config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
-
- # Set 'start single-conversion' bit to begin conversions
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write threshold high and low registers to the ADC
- # V_digital = (2^(n-1)-1)/pga*V_analog
- if (self.ic == self.__IC_ADS1015):
- thresholdHighWORD = int(thresholdHigh*(2048.0/pga))
- else:
- thresholdHighWORD = int(thresholdHigh*(32767.0/pga))
- bytes = [(thresholdHighWORD >> 8) & 0xFF, thresholdHighWORD & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_HITHRESH, bytes)
-
- if (self.ic == self.__IC_ADS1015):
- thresholdLowWORD = int(thresholdLow*(2048.0/pga))
- else:
- thresholdLowWORD = int(thresholdLow*(32767.0/pga))
- bytes = [(thresholdLowWORD >> 8) & 0xFF, thresholdLowWORD & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_LOWTHRESH, bytes)
-
- # Write config register to the ADC
- # Once we write the ADC will convert continously and alert when things happen,
- # we can read the converted values using getLastConversionResult
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
-
- def startDifferentialComparator(self, chP, chN, thresholdHigh, thresholdLow, \
- pga=6144, sps=250, \
- activeLow=True, traditionalMode=True, latching=False, \
- numReadings=1):
- "Starts the comparator mode on the specified channel, see datasheet pg. 15. \
- In traditional mode it alerts (ALERT pin will go low) when voltage exceeds \
- thresholdHigh until it falls below thresholdLow (both given in mV). \
- In window mode (traditionalMode=False) it alerts when voltage doesn't lie\
- between both thresholds.\
- In latching mode the alert will continue until the conversion value is read. \
- numReadings controls how many readings are necessary to trigger an alert: 1, 2 or 4.\
- Use getLastConversionResults() to read the current value (which may differ \
- from the one that triggered the alert) and clear the alert pin in latching mode. \
- This function starts the continuous conversion mode. The sps controls \
- the sample rate and the pga the gain, see datasheet page 13. "
-
- # Continuous mode
- config = self.__ADS1015_REG_CONFIG_MODE_CONTIN
-
- if (activeLow==False):
- config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVHI
- else:
- config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW
-
- if (traditionalMode==False):
- config |= self.__ADS1015_REG_CONFIG_CMODE_WINDOW
- else:
- config |= self.__ADS1015_REG_CONFIG_CMODE_TRAD
-
- if (latching==True):
- config |= self.__ADS1015_REG_CONFIG_CLAT_LATCH
- else:
- config |= self.__ADS1015_REG_CONFIG_CLAT_NONLAT
-
- if (numReadings==4):
- config |= self.__ADS1015_REG_CONFIG_CQUE_4CONV
- elif (numReadings==2):
- config |= self.__ADS1015_REG_CONFIG_CQUE_2CONV
- else:
- config |= self.__ADS1015_REG_CONFIG_CQUE_1CONV
-
- # Set sample per seconds, defaults to 250sps
- # If sps is in the dictionary (defined in init()) it returns the value of the constant
- # othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
- if (self.ic == self.__IC_ADS1015):
- if ( (sps not in self.spsADS1015) & self.debug):
- print "ADS1x15: Invalid sps specified: %d, using 1600sps" % sps
- config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
- else:
- if ( (sps not in self.spsADS1115) & self.debug):
- print "ADS1x15: Invalid sps specified: %d, using 250sps" % sps
- config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
-
- # Set PGA/voltage range, defaults to +-6.144V
- if ( (pga not in self.pgaADS1x15) & self.debug):
- print "ADS1x15: Invalid pga specified: %d, using 6144mV" % pga
- config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
- self.pga = pga
-
- # Set channels
- if ( (chP == 0) & (chN == 1) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
- elif ( (chP == 0) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
- elif ( (chP == 2) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
- elif ( (chP == 1) & (chN == 3) ):
- config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
- else:
- if (self.debug):
- print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
- return -1
-
- # Set 'start single-conversion' bit to begin conversions
- config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
-
- # Write threshold high and low registers to the ADC
- # V_digital = (2^(n-1)-1)/pga*V_analog
- if (self.ic == self.__IC_ADS1015):
- thresholdHighWORD = int(thresholdHigh*(2048.0/pga))
- else:
- thresholdHighWORD = int(thresholdHigh*(32767.0/pga))
- bytes = [(thresholdHighWORD >> 8) & 0xFF, thresholdHighWORD & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_HITHRESH, bytes)
-
- if (self.ic == self.__IC_ADS1015):
- thresholdLowWORD = int(thresholdLow*(2048.0/pga))
- else:
- thresholdLowWORD = int(thresholdLow*(32767.0/pga))
- bytes = [(thresholdLowWORD >> 8) & 0xFF, thresholdLowWORD & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_LOWTHRESH, bytes)
-
- # Write config register to the ADC
- # Once we write the ADC will convert continously and alert when things happen,
- # we can read the converted values using getLastConversionResult
- bytes = [(config >> 8) & 0xFF, config & 0xFF]
- self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
-
diff --git a/Adafruit_ADS1x15/Adafruit_I2C.py b/Adafruit_ADS1x15/Adafruit_I2C.py
deleted file mode 120000
index 77f06164..00000000
--- a/Adafruit_ADS1x15/Adafruit_I2C.py
+++ /dev/null
@@ -1 +0,0 @@
-../Adafruit_I2C/Adafruit_I2C.py
\ No newline at end of file
diff --git a/Adafruit_ADS1x15/ads1x15_ex_comparator.py b/Adafruit_ADS1x15/ads1x15_ex_comparator.py
deleted file mode 100644
index e10eb6cb..00000000
--- a/Adafruit_ADS1x15/ads1x15_ex_comparator.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/python
-
-import time, signal, sys
-from Adafruit_ADS1x15 import ADS1x15
-
-def signal_handler(signal, frame):
- print 'You pressed Ctrl+C!'
- print adc.getLastConversionResults()/1000.0
- adc.stopContinuousConversion()
- sys.exit(0)
-
-signal.signal(signal.SIGINT, signal_handler)
-# Print 'Press Ctrl+C to exit'
-
-ADS1015 = 0x00 # 12-bit ADC
-ADS1115 = 0x01 # 16-bit ADC
-
-# Initialise the ADC using the default mode (use default I2C address)
-# Set this to ADS1015 or ADS1115 depending on the ADC you are using!
-adc = ADS1x15(ic=ADS1115)
-
-# start comparator on channel 2 with a thresholdHigh=200mV and low=100mV
-# in traditional mode, non-latching, +/-1.024V and 250sps
-adc.startSingleEndedComparator(2, 200, 100, pga=1024, sps=250, activeLow=True, traditionalMode=True, latching=False, numReadings=1)
-
-while True:
- print adc.getLastConversionResults()/1000.0
- time.sleep(0.25)
-
-#time.sleep(0.1)
diff --git a/Adafruit_ADS1x15/ads1x15_ex_differential.py b/Adafruit_ADS1x15/ads1x15_ex_differential.py
deleted file mode 100644
index 01614fdd..00000000
--- a/Adafruit_ADS1x15/ads1x15_ex_differential.py
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/python
-
-import time, signal, sys
-from Adafruit_ADS1x15 import ADS1x15
-
-def signal_handler(signal, frame):
- #print 'You pressed Ctrl+C!'
- sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-#print 'Press Ctrl+C to exit'
-
-ADS1015 = 0x00 # 12-bit ADC
-ADS1115 = 0x01 # 16-bit ADC
-
-# Initialise the ADC using the default mode (use default I2C address)
-# Set this to ADS1015 or ADS1115 depending on the ADC you are using!
-adc = ADS1x15(ic=ADS1115)
-
-# Read channels 2 and 3 in single-ended mode, at +/-4.096V and 250sps
-volts2 = adc.readADCSingleEnded(2, 4096, 250)/1000.0
-volts3 = adc.readADCSingleEnded(3, 4096, 250)/1000.0
-
-# Now do a differential reading of channels 2 and 3
-voltsdiff = adc.readADCDifferential23(4096, 250)/1000.0
-
-# Display the two different reading for comparison purposes
-print "%.8f %.8f %.8f %.8f" % (volts2, volts3, volts3-volts2, -voltsdiff)
diff --git a/Adafruit_ADS1x15/ads1x15_ex_singleended.py b/Adafruit_ADS1x15/ads1x15_ex_singleended.py
deleted file mode 100644
index 383927fa..00000000
--- a/Adafruit_ADS1x15/ads1x15_ex_singleended.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/python
-
-import time, signal, sys
-from Adafruit_ADS1x15 import ADS1x15
-
-def signal_handler(signal, frame):
- print 'You pressed Ctrl+C!'
- sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-#print 'Press Ctrl+C to exit'
-
-ADS1015 = 0x00 # 12-bit ADC
-ADS1115 = 0x01 # 16-bit ADC
-
-# Select the gain
-# gain = 61 # +/- 6.144V
-gain = 4096 # +/- 4.096V
-# gain = 2048 # +/- 2.048V
-# gain = 1024 # +/- 1.024V
-# gain = 512 # +/- 0.512V
-# gain = 256 # +/- 0.256V
-
-# Select the sample rate
-# sps = 8 # 8 samples per second
-# sps = 16 # 16 samples per second
-# sps = 32 # 32 samples per second
-# sps = 64 # 64 samples per second
-# sps = 128 # 128 samples per second
-sps = 250 # 250 samples per second
-# sps = 475 # 475 samples per second
-# sps = 860 # 860 samples per second
-
-# Initialise the ADC using the default mode (use default I2C address)
-# Set this to ADS1015 or ADS1115 depending on the ADC you are using!
-adc = ADS1x15(ic=ADS1115)
-
-# Read channel 0 in single-ended mode using the settings above
-volts = adc.readADCSingleEnded(0, gain, sps) / 1000
-
-# To read channel 3 in single-ended mode, +/- 1.024V, 860 sps use:
-# volts = adc.readADCSingleEnded(3, 1024, 860)
-
-print "%.6f" % (volts)
diff --git a/Adafruit_ADXL345/Adafruit_ADXL345.py b/Adafruit_ADXL345/Adafruit_ADXL345.py
deleted file mode 100755
index 50b00abe..00000000
--- a/Adafruit_ADXL345/Adafruit_ADXL345.py
+++ /dev/null
@@ -1,114 +0,0 @@
-#!/usr/bin/python
-
-# Python library for ADXL345 accelerometer.
-
-# Copyright 2013 Adafruit Industries
-
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-# DEALINGS IN THE SOFTWARE.
-
-from Adafruit_I2C import Adafruit_I2C
-
-
-class Adafruit_ADXL345(Adafruit_I2C):
-
- # Minimal constants carried over from Arduino library
-
- ADXL345_ADDRESS = 0x53
-
- ADXL345_REG_DEVID = 0x00 # Device ID
- ADXL345_REG_DATAX0 = 0x32 # X-axis data 0 (6 bytes for X/Y/Z)
- ADXL345_REG_POWER_CTL = 0x2D # Power-saving features control
-
- ADXL345_DATARATE_0_10_HZ = 0x00
- ADXL345_DATARATE_0_20_HZ = 0x01
- ADXL345_DATARATE_0_39_HZ = 0x02
- ADXL345_DATARATE_0_78_HZ = 0x03
- ADXL345_DATARATE_1_56_HZ = 0x04
- ADXL345_DATARATE_3_13_HZ = 0x05
- ADXL345_DATARATE_6_25HZ = 0x06
- ADXL345_DATARATE_12_5_HZ = 0x07
- ADXL345_DATARATE_25_HZ = 0x08
- ADXL345_DATARATE_50_HZ = 0x09
- ADXL345_DATARATE_100_HZ = 0x0A # (default)
- ADXL345_DATARATE_200_HZ = 0x0B
- ADXL345_DATARATE_400_HZ = 0x0C
- ADXL345_DATARATE_800_HZ = 0x0D
- ADXL345_DATARATE_1600_HZ = 0x0E
- ADXL345_DATARATE_3200_HZ = 0x0F
-
- ADXL345_RANGE_2_G = 0x00 # +/- 2g (default)
- ADXL345_RANGE_4_G = 0x01 # +/- 4g
- ADXL345_RANGE_8_G = 0x02 # +/- 8g
- ADXL345_RANGE_16_G = 0x03 # +/- 16g
-
-
- def __init__(self, busnum=-1, debug=False):
-
- self.accel = Adafruit_I2C(self.ADXL345_ADDRESS, busnum, debug)
-
- if self.accel.readU8(self.ADXL345_REG_DEVID) == 0xE5:
- # Enable the accelerometer
- self.accel.write8(self.ADXL345_REG_POWER_CTL, 0x08)
-
-
- def setRange(self, range):
- # Read the data format register to preserve bits. Update the data
- # rate, make sure that the FULL-RES bit is enabled for range scaling
- format = ((self.accel.readU8(self.ADXL345_REG_DATA_FORMAT) & ~0x0F) |
- range | 0x08)
- # Write the register back to the IC
- seld.accel.write8(self.ADXL345_REG_DATA_FORMAT, format)
-
-
- def getRange(self):
- return self.accel.readU8(self.ADXL345_REG_DATA_FORMAT) & 0x03
-
-
- def setDataRate(self, dataRate):
- # Note: The LOW_POWER bits are currently ignored,
- # we always keep the device in 'normal' mode
- self.accel.write8(self.ADXL345_REG_BW_RATE, dataRate & 0x0F)
-
-
- def getDataRate(self):
- return self.accel.readU8(self.ADXL345_REG_BW_RATE) & 0x0F
-
-
- # Read the accelerometer
- def read(self):
- raw = self.accel.readList(self.ADXL345_REG_DATAX0, 6)
- res = []
- for i in range(0, 6, 2):
- g = raw[i] | (raw[i+1] << 8)
- if g > 32767: g -= 65536
- res.append(g)
- return res
-
-
-# Simple example prints accelerometer data once per second:
-if __name__ == '__main__':
-
- from time import sleep
-
- accel = Adafruit_ADXL345()
-
- print '[Accelerometer X, Y, Z]'
- while True:
- print accel.read()
- sleep(1) # Output is fun to watch if this is commented out
diff --git a/Adafruit_ADXL345/Adafruit_I2C.py b/Adafruit_ADXL345/Adafruit_I2C.py
deleted file mode 120000
index 77f06164..00000000
--- a/Adafruit_ADXL345/Adafruit_I2C.py
+++ /dev/null
@@ -1 +0,0 @@
-../Adafruit_I2C/Adafruit_I2C.py
\ No newline at end of file
diff --git a/Adafruit_BMP085/Adafruit_BMP085.py b/Adafruit_BMP085/Adafruit_BMP085.py
deleted file mode 100755
index e8d0e314..00000000
--- a/Adafruit_BMP085/Adafruit_BMP085.py
+++ /dev/null
@@ -1,259 +0,0 @@
-#!/usr/bin/python
-
-import time
-from Adafruit_I2C import Adafruit_I2C
-
-# ===========================================================================
-# BMP085 Class
-# ===========================================================================
-
-class BMP085 :
- i2c = None
-
- # Operating Modes
- __BMP085_ULTRALOWPOWER = 0
- __BMP085_STANDARD = 1
- __BMP085_HIGHRES = 2
- __BMP085_ULTRAHIGHRES = 3
-
- # BMP085 Registers
- __BMP085_CAL_AC1 = 0xAA # R Calibration data (16 bits)
- __BMP085_CAL_AC2 = 0xAC # R Calibration data (16 bits)
- __BMP085_CAL_AC3 = 0xAE # R Calibration data (16 bits)
- __BMP085_CAL_AC4 = 0xB0 # R Calibration data (16 bits)
- __BMP085_CAL_AC5 = 0xB2 # R Calibration data (16 bits)
- __BMP085_CAL_AC6 = 0xB4 # R Calibration data (16 bits)
- __BMP085_CAL_B1 = 0xB6 # R Calibration data (16 bits)
- __BMP085_CAL_B2 = 0xB8 # R Calibration data (16 bits)
- __BMP085_CAL_MB = 0xBA # R Calibration data (16 bits)
- __BMP085_CAL_MC = 0xBC # R Calibration data (16 bits)
- __BMP085_CAL_MD = 0xBE # R Calibration data (16 bits)
- __BMP085_CONTROL = 0xF4
- __BMP085_TEMPDATA = 0xF6
- __BMP085_PRESSUREDATA = 0xF6
- __BMP085_READTEMPCMD = 0x2E
- __BMP085_READPRESSURECMD = 0x34
-
- # Private Fields
- _cal_AC1 = 0
- _cal_AC2 = 0
- _cal_AC3 = 0
- _cal_AC4 = 0
- _cal_AC5 = 0
- _cal_AC6 = 0
- _cal_B1 = 0
- _cal_B2 = 0
- _cal_MB = 0
- _cal_MC = 0
- _cal_MD = 0
-
- # Constructor
- def __init__(self, address=0x77, mode=1, debug=False):
- self.i2c = Adafruit_I2C(address)
-
- self.address = address
- self.debug = debug
- # Make sure the specified mode is in the appropriate range
- if ((mode < 0) | (mode > 3)):
- if (self.debug):
- print "Invalid Mode: Using STANDARD by default"
- self.mode = self.__BMP085_STANDARD
- else:
- self.mode = mode
- # Read the calibration data
- self.readCalibrationData()
-
- def readS16(self, register):
- "Reads a signed 16-bit value"
- hi = self.i2c.readS8(register)
- lo = self.i2c.readU8(register+1)
- return (hi << 8) + lo
-
- def readU16(self, register):
- "Reads an unsigned 16-bit value"
- hi = self.i2c.readU8(register)
- lo = self.i2c.readU8(register+1)
- return (hi << 8) + lo
-
- def readCalibrationData(self):
- "Reads the calibration data from the IC"
- self._cal_AC1 = self.readS16(self.__BMP085_CAL_AC1) # INT16
- self._cal_AC2 = self.readS16(self.__BMP085_CAL_AC2) # INT16
- self._cal_AC3 = self.readS16(self.__BMP085_CAL_AC3) # INT16
- self._cal_AC4 = self.readU16(self.__BMP085_CAL_AC4) # UINT16
- self._cal_AC5 = self.readU16(self.__BMP085_CAL_AC5) # UINT16
- self._cal_AC6 = self.readU16(self.__BMP085_CAL_AC6) # UINT16
- self._cal_B1 = self.readS16(self.__BMP085_CAL_B1) # INT16
- self._cal_B2 = self.readS16(self.__BMP085_CAL_B2) # INT16
- self._cal_MB = self.readS16(self.__BMP085_CAL_MB) # INT16
- self._cal_MC = self.readS16(self.__BMP085_CAL_MC) # INT16
- self._cal_MD = self.readS16(self.__BMP085_CAL_MD) # INT16
- if (self.debug):
- self.showCalibrationData()
-
- def showCalibrationData(self):
- "Displays the calibration values for debugging purposes"
- print "DBG: AC1 = %6d" % (self._cal_AC1)
- print "DBG: AC2 = %6d" % (self._cal_AC2)
- print "DBG: AC3 = %6d" % (self._cal_AC3)
- print "DBG: AC4 = %6d" % (self._cal_AC4)
- print "DBG: AC5 = %6d" % (self._cal_AC5)
- print "DBG: AC6 = %6d" % (self._cal_AC6)
- print "DBG: B1 = %6d" % (self._cal_B1)
- print "DBG: B2 = %6d" % (self._cal_B2)
- print "DBG: MB = %6d" % (self._cal_MB)
- print "DBG: MC = %6d" % (self._cal_MC)
- print "DBG: MD = %6d" % (self._cal_MD)
-
- def readRawTemp(self):
- "Reads the raw (uncompensated) temperature from the sensor"
- self.i2c.write8(self.__BMP085_CONTROL, self.__BMP085_READTEMPCMD)
- time.sleep(0.005) # Wait 5ms
- raw = self.readU16(self.__BMP085_TEMPDATA)
- if (self.debug):
- print "DBG: Raw Temp: 0x%04X (%d)" % (raw & 0xFFFF, raw)
- return raw
-
- def readRawPressure(self):
- "Reads the raw (uncompensated) pressure level from the sensor"
- self.i2c.write8(self.__BMP085_CONTROL, self.__BMP085_READPRESSURECMD + (self.mode << 6))
- if (self.mode == self.__BMP085_ULTRALOWPOWER):
- time.sleep(0.005)
- elif (self.mode == self.__BMP085_HIGHRES):
- time.sleep(0.014)
- elif (self.mode == self.__BMP085_ULTRAHIGHRES):
- time.sleep(0.026)
- else:
- time.sleep(0.008)
- msb = self.i2c.readU8(self.__BMP085_PRESSUREDATA)
- lsb = self.i2c.readU8(self.__BMP085_PRESSUREDATA+1)
- xlsb = self.i2c.readU8(self.__BMP085_PRESSUREDATA+2)
- raw = ((msb << 16) + (lsb << 8) + xlsb) >> (8 - self.mode)
- if (self.debug):
- print "DBG: Raw Pressure: 0x%04X (%d)" % (raw & 0xFFFF, raw)
- return raw
-
- def readTemperature(self):
- "Gets the compensated temperature in degrees celcius"
- UT = 0
- X1 = 0
- X2 = 0
- B5 = 0
- temp = 0.0
-
- # Read raw temp before aligning it with the calibration values
- UT = self.readRawTemp()
- X1 = ((UT - self._cal_AC6) * self._cal_AC5) >> 15
- X2 = (self._cal_MC << 11) / (X1 + self._cal_MD)
- B5 = X1 + X2
- temp = ((B5 + 8) >> 4) / 10.0
- if (self.debug):
- print "DBG: Calibrated temperature = %f C" % temp
- return temp
-
- def readPressure(self):
- "Gets the compensated pressure in pascal"
- UT = 0
- UP = 0
- B3 = 0
- B5 = 0
- B6 = 0
- X1 = 0
- X2 = 0
- X3 = 0
- p = 0
- B4 = 0
- B7 = 0
-
- UT = self.readRawTemp()
- UP = self.readRawPressure()
-
- # You can use the datasheet values to test the conversion results
- # dsValues = True
- dsValues = False
-
- if (dsValues):
- UT = 27898
- UP = 23843
- self._cal_AC6 = 23153
- self._cal_AC5 = 32757
- self._cal_MB = -32768;
- self._cal_MC = -8711
- self._cal_MD = 2868
- self._cal_B1 = 6190
- self._cal_B2 = 4
- self._cal_AC3 = -14383
- self._cal_AC2 = -72
- self._cal_AC1 = 408
- self._cal_AC4 = 32741
- self.mode = self.__BMP085_ULTRALOWPOWER
- if (self.debug):
- self.showCalibrationData()
-
- # True Temperature Calculations
- X1 = ((UT - self._cal_AC6) * self._cal_AC5) >> 15
- X2 = (self._cal_MC << 11) / (X1 + self._cal_MD)
- B5 = X1 + X2
- if (self.debug):
- print "DBG: X1 = %d" % (X1)
- print "DBG: X2 = %d" % (X2)
- print "DBG: B5 = %d" % (B5)
- print "DBG: True Temperature = %.2f C" % (((B5 + 8) >> 4) / 10.0)
-
- # Pressure Calculations
- B6 = B5 - 4000
- X1 = (self._cal_B2 * (B6 * B6) >> 12) >> 11
- X2 = (self._cal_AC2 * B6) >> 11
- X3 = X1 + X2
- B3 = (((self._cal_AC1 * 4 + X3) << self.mode) + 2) / 4
- if (self.debug):
- print "DBG: B6 = %d" % (B6)
- print "DBG: X1 = %d" % (X1)
- print "DBG: X2 = %d" % (X2)
- print "DBG: X3 = %d" % (X3)
- print "DBG: B3 = %d" % (B3)
-
- X1 = (self._cal_AC3 * B6) >> 13
- X2 = (self._cal_B1 * ((B6 * B6) >> 12)) >> 16
- X3 = ((X1 + X2) + 2) >> 2
- B4 = (self._cal_AC4 * (X3 + 32768)) >> 15
- B7 = (UP - B3) * (50000 >> self.mode)
- if (self.debug):
- print "DBG: X1 = %d" % (X1)
- print "DBG: X2 = %d" % (X2)
- print "DBG: X3 = %d" % (X3)
- print "DBG: B4 = %d" % (B4)
- print "DBG: B7 = %d" % (B7)
-
- if (B7 < 0x80000000):
- p = (B7 * 2) / B4
- else:
- p = (B7 / B4) * 2
-
- if (self.debug):
- print "DBG: X1 = %d" % (X1)
-
- X1 = (p >> 8) * (p >> 8)
- X1 = (X1 * 3038) >> 16
- X2 = (-7357 * p) >> 16
- if (self.debug):
- print "DBG: p = %d" % (p)
- print "DBG: X1 = %d" % (X1)
- print "DBG: X2 = %d" % (X2)
-
- p = p + ((X1 + X2 + 3791) >> 4)
- if (self.debug):
- print "DBG: Pressure = %d Pa" % (p)
-
- return p
-
- def readAltitude(self, seaLevelPressure=101325):
- "Calculates the altitude in meters"
- altitude = 0.0
- pressure = float(self.readPressure())
- altitude = 44330.0 * (1.0 - pow(pressure / seaLevelPressure, 0.1903))
- if (self.debug):
- print "DBG: Altitude = %d" % (altitude)
- return altitude
-
- return 0
diff --git a/Adafruit_BMP085/Adafruit_BMP085_example.py b/Adafruit_BMP085/Adafruit_BMP085_example.py
deleted file mode 100755
index e7143c8a..00000000
--- a/Adafruit_BMP085/Adafruit_BMP085_example.py
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/python
-
-from Adafruit_BMP085 import BMP085
-
-# ===========================================================================
-# Example Code
-# ===========================================================================
-
-# Initialise the BMP085 and use STANDARD mode (default value)
-# bmp = BMP085(0x77, debug=True)
-bmp = BMP085(0x77)
-
-# To specify a different operating mode, uncomment one of the following:
-# bmp = BMP085(0x77, 0) # ULTRALOWPOWER Mode
-# bmp = BMP085(0x77, 1) # STANDARD Mode
-# bmp = BMP085(0x77, 2) # HIRES Mode
-# bmp = BMP085(0x77, 3) # ULTRAHIRES Mode
-
-temp = bmp.readTemperature()
-
-# Read the current barometric pressure level
-pressure = bmp.readPressure()
-
-# To calculate altitude based on an estimated mean sea level pressure
-# (1013.25 hPa) call the function as follows, but this won't be very accurate
-altitude = bmp.readAltitude()
-
-# To specify a more accurate altitude, enter the correct mean sea level
-# pressure level. For example, if the current pressure level is 1023.50 hPa
-# enter 102350 since we include two decimal places in the integer value
-# altitude = bmp.readAltitude(102350)
-
-print "Temperature: %.2f C" % temp
-print "Pressure: %.2f hPa" % (pressure / 100.0)
-print "Altitude: %.2f" % altitude
diff --git a/Adafruit_BMP085/Adafruit_BMP085_googledocs_ex.py b/Adafruit_BMP085/Adafruit_BMP085_googledocs_ex.py
deleted file mode 100755
index 4d62cd0b..00000000
--- a/Adafruit_BMP085/Adafruit_BMP085_googledocs_ex.py
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import time
-import datetime
-import gspread
-from Adafruit_BMP085 import BMP085
-
-# ===========================================================================
-# Google Account Details
-# ===========================================================================
-
-# Account details for google docs
-email = 'you@somewhere.com'
-password = '$hhh!'
-spreadsheet = 'SpreadsheetName'
-
-# ===========================================================================
-# Example Code
-# ===========================================================================
-
-# Initialise the BMP085 and use STANDARD mode (default value)
-# bmp = BMP085(0x77, debug=True)
-bmp = BMP085(0x77)
-
-# To specify a different operating mode, uncomment one of the following:
-# bmp = BMP085(0x77, 0) # ULTRALOWPOWER Mode
-# bmp = BMP085(0x77, 1) # STANDARD Mode
-# bmp = BMP085(0x77, 2) # HIRES Mode
-# bmp = BMP085(0x77, 3) # ULTRAHIRES Mode
-
-# Login with your Google account
-try:
- gc = gspread.login(email, password)
-except:
- print "Unable to log in. Check your email address/password"
- sys.exit()
-
-# Open a worksheet from your spreadsheet using the filename
-try:
- worksheet = gc.open(spreadsheet).sheet1
- # Alternatively, open a spreadsheet using the spreadsheet's key
- # worksheet = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')
-except:
- print "Unable to open the spreadsheet. Check your filename: %s" % spreadsheet
- sys.exit()
-
-# Continuously append data
-while(True):
- temp = bmp.readTemperature()
- pressure = bmp.readPressure()
- altitude = bmp.readAltitude()
-
- print "Temperature: %.2f C" % temp
- print "Pressure: %.2f hPa" % (pressure / 100.0)
- print "Altitude: %.2f" % altitude
-
- # Append the data in the spreadsheet, including a timestamp
- try:
- values = [datetime.datetime.now(), temp, pressure, altitude]
- worksheet.append_row(values)
- except:
- print "Unable to append data. Check your connection?"
- sys.exit()
-
- # Wait 5 seconds before continuing
- print "Wrote a row to %s" % spreadsheet
- time.sleep(5)
-
diff --git a/Adafruit_BMP085/Adafruit_I2C.py b/Adafruit_BMP085/Adafruit_I2C.py
deleted file mode 120000
index 77f06164..00000000
--- a/Adafruit_BMP085/Adafruit_I2C.py
+++ /dev/null
@@ -1 +0,0 @@
-../Adafruit_I2C/Adafruit_I2C.py
\ No newline at end of file
diff --git a/Adafruit_CharLCD/Adafruit_CharLCD.py b/Adafruit_CharLCD/Adafruit_CharLCD.py
deleted file mode 100755
index 22060c94..00000000
--- a/Adafruit_CharLCD/Adafruit_CharLCD.py
+++ /dev/null
@@ -1,261 +0,0 @@
-#!/usr/bin/python
-
-#
-# based on code from lrvick and LiquidCrystal
-# lrvic - https://github.com/lrvick/raspi-hd44780/blob/master/hd44780.py
-# LiquidCrystal - https://github.com/arduino/Arduino/blob/master/libraries/LiquidCrystal/LiquidCrystal.cpp
-#
-
-from time import sleep
-
-class Adafruit_CharLCD:
-
- # commands
- LCD_CLEARDISPLAY = 0x01
- LCD_RETURNHOME = 0x02
- LCD_ENTRYMODESET = 0x04
- LCD_DISPLAYCONTROL = 0x08
- LCD_CURSORSHIFT = 0x10
- LCD_FUNCTIONSET = 0x20
- LCD_SETCGRAMADDR = 0x40
- LCD_SETDDRAMADDR = 0x80
-
- # flags for display entry mode
- LCD_ENTRYRIGHT = 0x00
- LCD_ENTRYLEFT = 0x02
- LCD_ENTRYSHIFTINCREMENT = 0x01
- LCD_ENTRYSHIFTDECREMENT = 0x00
-
- # flags for display on/off control
- LCD_DISPLAYON = 0x04
- LCD_DISPLAYOFF = 0x00
- LCD_CURSORON = 0x02
- LCD_CURSOROFF = 0x00
- LCD_BLINKON = 0x01
- LCD_BLINKOFF = 0x00
-
- # flags for display/cursor shift
- LCD_DISPLAYMOVE = 0x08
- LCD_CURSORMOVE = 0x00
-
- # flags for display/cursor shift
- LCD_DISPLAYMOVE = 0x08
- LCD_CURSORMOVE = 0x00
- LCD_MOVERIGHT = 0x04
- LCD_MOVELEFT = 0x00
-
- # flags for function set
- LCD_8BITMODE = 0x10
- LCD_4BITMODE = 0x00
- LCD_2LINE = 0x08
- LCD_1LINE = 0x00
- LCD_5x10DOTS = 0x04
- LCD_5x8DOTS = 0x00
-
-
-
- def __init__(self, pin_rs=25, pin_e=24, pins_db=[23, 17, 21, 22], GPIO = None):
- # Emulate the old behavior of using RPi.GPIO if we haven't been given
- # an explicit GPIO interface to use
- if not GPIO:
- import RPi.GPIO as GPIO
- self.GPIO = GPIO
- self.pin_rs = pin_rs
- self.pin_e = pin_e
- self.pins_db = pins_db
-
- self.GPIO.setmode(GPIO.BCM)
- self.GPIO.setup(self.pin_e, GPIO.OUT)
- self.GPIO.setup(self.pin_rs, GPIO.OUT)
-
- for pin in self.pins_db:
- self.GPIO.setup(pin, GPIO.OUT)
-
- self.write4bits(0x33) # initialization
- self.write4bits(0x32) # initialization
- self.write4bits(0x28) # 2 line 5x7 matrix
- self.write4bits(0x0C) # turn cursor off 0x0E to enable cursor
- self.write4bits(0x06) # shift cursor right
-
- self.displaycontrol = self.LCD_DISPLAYON | self.LCD_CURSOROFF | self.LCD_BLINKOFF
-
- self.displayfunction = self.LCD_4BITMODE | self.LCD_1LINE | self.LCD_5x8DOTS
- self.displayfunction |= self.LCD_2LINE
-
- """ Initialize to default text direction (for romance languages) """
- self.displaymode = self.LCD_ENTRYLEFT | self.LCD_ENTRYSHIFTDECREMENT
- self.write4bits(self.LCD_ENTRYMODESET | self.displaymode) # set the entry mode
-
- self.clear()
-
-
- def begin(self, cols, lines):
-
- if (lines > 1):
- self.numlines = lines
- self.displayfunction |= self.LCD_2LINE
- self.currline = 0
-
-
- def home(self):
-
- self.write4bits(self.LCD_RETURNHOME) # set cursor position to zero
- self.delayMicroseconds(3000) # this command takes a long time!
-
-
- def clear(self):
-
- self.write4bits(self.LCD_CLEARDISPLAY) # command to clear display
- self.delayMicroseconds(3000) # 3000 microsecond sleep, clearing the display takes a long time
-
-
- def setCursor(self, col, row):
-
- self.row_offsets = [ 0x00, 0x40, 0x14, 0x54 ]
-
- if ( row > self.numlines ):
- row = self.numlines - 1 # we count rows starting w/0
-
- self.write4bits(self.LCD_SETDDRAMADDR | (col + self.row_offsets[row]))
-
-
- def noDisplay(self):
- """ Turn the display off (quickly) """
-
- self.displaycontrol &= ~self.LCD_DISPLAYON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def display(self):
- """ Turn the display on (quickly) """
-
- self.displaycontrol |= self.LCD_DISPLAYON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noCursor(self):
- """ Turns the underline cursor on/off """
-
- self.displaycontrol &= ~self.LCD_CURSORON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def cursor(self):
- """ Cursor On """
-
- self.displaycontrol |= self.LCD_CURSORON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noBlink(self):
- """ Turn on and off the blinking cursor """
-
- self.displaycontrol &= ~self.LCD_BLINKON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noBlink(self):
- """ Turn on and off the blinking cursor """
-
- self.displaycontrol &= ~self.LCD_BLINKON
- self.write4bits(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def DisplayLeft(self):
- """ These commands scroll the display without changing the RAM """
-
- self.write4bits(self.LCD_CURSORSHIFT | self.LCD_DISPLAYMOVE | self.LCD_MOVELEFT)
-
-
- def scrollDisplayRight(self):
- """ These commands scroll the display without changing the RAM """
-
- self.write4bits(self.LCD_CURSORSHIFT | self.LCD_DISPLAYMOVE | self.LCD_MOVERIGHT);
-
-
- def leftToRight(self):
- """ This is for text that flows Left to Right """
-
- self.displaymode |= self.LCD_ENTRYLEFT
- self.write4bits(self.LCD_ENTRYMODESET | self.displaymode);
-
-
- def rightToLeft(self):
- """ This is for text that flows Right to Left """
- self.displaymode &= ~self.LCD_ENTRYLEFT
- self.write4bits(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def autoscroll(self):
- """ This will 'right justify' text from the cursor """
-
- self.displaymode |= self.LCD_ENTRYSHIFTINCREMENT
- self.write4bits(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def noAutoscroll(self):
- """ This will 'left justify' text from the cursor """
-
- self.displaymode &= ~self.LCD_ENTRYSHIFTINCREMENT
- self.write4bits(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def write4bits(self, bits, char_mode=False):
- """ Send command to LCD """
-
- self.delayMicroseconds(1000) # 1000 microsecond sleep
-
- bits=bin(bits)[2:].zfill(8)
-
- self.GPIO.output(self.pin_rs, char_mode)
-
- for pin in self.pins_db:
- self.GPIO.output(pin, False)
-
- for i in range(4):
- if bits[i] == "1":
- self.GPIO.output(self.pins_db[::-1][i], True)
-
- self.pulseEnable()
-
- for pin in self.pins_db:
- self.GPIO.output(pin, False)
-
- for i in range(4,8):
- if bits[i] == "1":
- self.GPIO.output(self.pins_db[::-1][i-4], True)
-
- self.pulseEnable()
-
-
- def delayMicroseconds(self, microseconds):
- seconds = microseconds / float(1000000) # divide microseconds by 1 million for seconds
- sleep(seconds)
-
-
- def pulseEnable(self):
- self.GPIO.output(self.pin_e, False)
- self.delayMicroseconds(1) # 1 microsecond pause - enable pulse must be > 450ns
- self.GPIO.output(self.pin_e, True)
- self.delayMicroseconds(1) # 1 microsecond pause - enable pulse must be > 450ns
- self.GPIO.output(self.pin_e, False)
- self.delayMicroseconds(1) # commands need > 37us to settle
-
-
- def message(self, text):
- """ Send string to LCD. Newline wraps to second line"""
-
- for char in text:
- if char == '\n':
- self.write4bits(0xC0) # next line
- else:
- self.write4bits(ord(char),True)
-
-
-if __name__ == '__main__':
-
- lcd = Adafruit_CharLCD()
-
- lcd.clear()
- lcd.message(" Adafruit 16x2\n Standard LCD")
-
diff --git a/Adafruit_CharLCD/Adafruit_CharLCD_IPclock_example.py b/Adafruit_CharLCD/Adafruit_CharLCD_IPclock_example.py
deleted file mode 100755
index d3f6958f..00000000
--- a/Adafruit_CharLCD/Adafruit_CharLCD_IPclock_example.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/python
-
-from Adafruit_CharLCD import Adafruit_CharLCD
-from subprocess import *
-from time import sleep, strftime
-from datetime import datetime
-
-lcd = Adafruit_CharLCD()
-
-cmd = "ip addr show eth0 | grep inet | awk '{print $2}' | cut -d/ -f1"
-
-lcd.begin(16,1)
-
-def run_cmd(cmd):
- p = Popen(cmd, shell=True, stdout=PIPE)
- output = p.communicate()[0]
- return output
-
-while 1:
- lcd.clear()
- ipaddr = run_cmd(cmd)
- lcd.message(datetime.now().strftime('%b %d %H:%M:%S\n'))
- lcd.message('IP %s' % ( ipaddr ) )
- sleep(2)
diff --git a/Adafruit_CharLCD/Adafruit_I2C.py b/Adafruit_CharLCD/Adafruit_I2C.py
deleted file mode 120000
index 77f06164..00000000
--- a/Adafruit_CharLCD/Adafruit_I2C.py
+++ /dev/null
@@ -1 +0,0 @@
-../Adafruit_I2C/Adafruit_I2C.py
\ No newline at end of file
diff --git a/Adafruit_CharLCDPlate/Adafruit_CharLCDPlate.py b/Adafruit_CharLCDPlate/Adafruit_CharLCDPlate.py
deleted file mode 100644
index 06b9300c..00000000
--- a/Adafruit_CharLCDPlate/Adafruit_CharLCDPlate.py
+++ /dev/null
@@ -1,479 +0,0 @@
-#!/usr/bin/python
-
-# Python library for Adafruit RGB-backlit LCD plate for Raspberry Pi.
-# Written by Adafruit Industries. MIT license.
-
-# This is essentially a complete rewrite, but the calling syntax
-# and constants are based on code from lrvick and LiquidCrystal.
-# lrvic - https://github.com/lrvick/raspi-hd44780/blob/master/hd44780.py
-# LiquidCrystal - https://github.com/arduino/Arduino/blob/master/libraries/LiquidCrystal/LiquidCrystal.cpp
-
-from Adafruit_I2C import Adafruit_I2C
-from time import sleep
-
-class Adafruit_CharLCDPlate(Adafruit_I2C):
-
- # ----------------------------------------------------------------------
- # Constants
-
- # Port expander registers
- MCP23017_IOCON_BANK0 = 0x0A # IOCON when Bank 0 active
- MCP23017_IOCON_BANK1 = 0x15 # IOCON when Bank 1 active
- # These are register addresses when in Bank 1 only:
- MCP23017_GPIOA = 0x09
- MCP23017_IODIRB = 0x10
- MCP23017_GPIOB = 0x19
-
- # Port expander input pin definitions
- SELECT = 0
- RIGHT = 1
- DOWN = 2
- UP = 3
- LEFT = 4
-
- # LED colors
- OFF = 0x00
- RED = 0x01
- GREEN = 0x02
- BLUE = 0x04
- YELLOW = RED + GREEN
- TEAL = GREEN + BLUE
- VIOLET = RED + BLUE
- WHITE = RED + GREEN + BLUE
- ON = RED + GREEN + BLUE
-
- # LCD Commands
- LCD_CLEARDISPLAY = 0x01
- LCD_RETURNHOME = 0x02
- LCD_ENTRYMODESET = 0x04
- LCD_DISPLAYCONTROL = 0x08
- LCD_CURSORSHIFT = 0x10
- LCD_FUNCTIONSET = 0x20
- LCD_SETCGRAMADDR = 0x40
- LCD_SETDDRAMADDR = 0x80
-
- # Flags for display on/off control
- LCD_DISPLAYON = 0x04
- LCD_DISPLAYOFF = 0x00
- LCD_CURSORON = 0x02
- LCD_CURSOROFF = 0x00
- LCD_BLINKON = 0x01
- LCD_BLINKOFF = 0x00
-
- # Flags for display entry mode
- LCD_ENTRYRIGHT = 0x00
- LCD_ENTRYLEFT = 0x02
- LCD_ENTRYSHIFTINCREMENT = 0x01
- LCD_ENTRYSHIFTDECREMENT = 0x00
-
- # Flags for display/cursor shift
- LCD_DISPLAYMOVE = 0x08
- LCD_CURSORMOVE = 0x00
- LCD_MOVERIGHT = 0x04
- LCD_MOVELEFT = 0x00
-
-
- # ----------------------------------------------------------------------
- # Constructor
-
- def __init__(self, busnum=-1, addr=0x20, debug=False):
-
- self.i2c = Adafruit_I2C(addr, busnum, debug)
-
- # I2C is relatively slow. MCP output port states are cached
- # so we don't need to constantly poll-and-change bit states.
- self.porta, self.portb, self.ddrb = 0, 0, 0b00010000
-
- # Set MCP23017 IOCON register to Bank 0 with sequential operation.
- # If chip is already set for Bank 0, this will just write to OLATB,
- # which won't seriously bother anything on the plate right now
- # (blue backlight LED will come on, but that's done in the next
- # step anyway).
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_IOCON_BANK1, 0)
-
- # Brute force reload ALL registers to known state. This also
- # sets up all the input pins, pull-ups, etc. for the Pi Plate.
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, 0,
- [ 0b00111111, # IODIRA R+G LEDs=outputs, buttons=inputs
- self.ddrb , # IODIRB LCD D7=input, Blue LED=output
- 0b00111111, # IPOLA Invert polarity on button inputs
- 0b00000000, # IPOLB
- 0b00000000, # GPINTENA Disable interrupt-on-change
- 0b00000000, # GPINTENB
- 0b00000000, # DEFVALA
- 0b00000000, # DEFVALB
- 0b00000000, # INTCONA
- 0b00000000, # INTCONB
- 0b00000000, # IOCON
- 0b00000000, # IOCON
- 0b00111111, # GPPUA Enable pull-ups on buttons
- 0b00000000, # GPPUB
- 0b00000000, # INTFA
- 0b00000000, # INTFB
- 0b00000000, # INTCAPA
- 0b00000000, # INTCAPB
- self.porta, # GPIOA
- self.portb, # GPIOB
- self.porta, # OLATA 0 on all outputs; side effect of
- self.portb ]) # OLATB turning on R+G+B backlight LEDs.
-
- # Switch to Bank 1 and disable sequential operation.
- # From this point forward, the register addresses do NOT match
- # the list immediately above. Instead, use the constants defined
- # at the start of the class. Also, the address register will no
- # longer increment automatically after this -- multi-byte
- # operations must be broken down into single-byte calls.
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_IOCON_BANK0, 0b10100000)
-
- self.displayshift = (self.LCD_CURSORMOVE |
- self.LCD_MOVERIGHT)
- self.displaymode = (self.LCD_ENTRYLEFT |
- self.LCD_ENTRYSHIFTDECREMENT)
- self.displaycontrol = (self.LCD_DISPLAYON |
- self.LCD_CURSOROFF |
- self.LCD_BLINKOFF)
-
- self.write(0x33) # Init
- self.write(0x32) # Init
- self.write(0x28) # 2 line 5x8 matrix
- self.write(self.LCD_CLEARDISPLAY)
- self.write(self.LCD_CURSORSHIFT | self.displayshift)
- self.write(self.LCD_ENTRYMODESET | self.displaymode)
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
- self.write(self.LCD_RETURNHOME)
-
-
- # ----------------------------------------------------------------------
- # Write operations
-
- # The LCD data pins (D4-D7) connect to MCP pins 12-9 (PORTB4-1), in
- # that order. Because this sequence is 'reversed,' a direct shift
- # won't work. This table remaps 4-bit data values to MCP PORTB
- # outputs, incorporating both the reverse and shift.
- flip = ( 0b00000000, 0b00010000, 0b00001000, 0b00011000,
- 0b00000100, 0b00010100, 0b00001100, 0b00011100,
- 0b00000010, 0b00010010, 0b00001010, 0b00011010,
- 0b00000110, 0b00010110, 0b00001110, 0b00011110 )
-
- # Low-level 4-bit interface for LCD output. This doesn't actually
- # write data, just returns a byte array of the PORTB state over time.
- # Can concatenate the output of multiple calls (up to 8) for more
- # efficient batch write.
- def out4(self, bitmask, value):
- hi = bitmask | self.flip[value >> 4]
- lo = bitmask | self.flip[value & 0x0F]
- return [hi | 0b00100000, hi, lo | 0b00100000, lo]
-
-
- # The speed of LCD accesses is inherently limited by I2C through the
- # port expander. A 'well behaved program' is expected to poll the
- # LCD to know that a prior instruction completed. But the timing of
- # most instructions is a known uniform 37 mS. The enable strobe
- # can't even be twiddled that fast through I2C, so it's a safe bet
- # with these instructions to not waste time polling (which requires
- # several I2C transfers for reconfiguring the port direction).
- # The D7 pin is set as input when a potentially time-consuming
- # instruction has been issued (e.g. screen clear), as well as on
- # startup, and polling will then occur before more commands or data
- # are issued.
-
- pollables = ( LCD_CLEARDISPLAY, LCD_RETURNHOME )
-
- # Write byte, list or string value to LCD
- def write(self, value, char_mode=False):
- """ Send command/data to LCD """
-
- # If pin D7 is in input state, poll LCD busy flag until clear.
- if self.ddrb & 0b00010000:
- lo = (self.portb & 0b00000001) | 0b01000000
- hi = lo | 0b00100000 # E=1 (strobe)
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_GPIOB, lo)
- while True:
- # Strobe high (enable)
- self.i2c.bus.write_byte(self.i2c.address, hi)
- # First nybble contains busy state
- bits = self.i2c.bus.read_byte(self.i2c.address)
- # Strobe low, high, low. Second nybble (A3) is ignored.
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, self.MCP23017_GPIOB, [lo, hi, lo])
- if (bits & 0b00000010) == 0: break # D7=0, not busy
- self.portb = lo
-
- # Polling complete, change D7 pin to output
- self.ddrb &= 0b11101111
- self.i2c.bus.write_byte_data(self.i2c.address,
- self.MCP23017_IODIRB, self.ddrb)
-
- bitmask = self.portb & 0b00000001 # Mask out PORTB LCD control bits
- if char_mode: bitmask |= 0b10000000 # Set data bit if not a command
-
- # If string or list, iterate through multiple write ops
- if isinstance(value, str):
- last = len(value) - 1 # Last character in string
- data = [] # Start with blank list
- for i, v in enumerate(value): # For each character...
- # Append 4 bytes to list representing PORTB over time.
- # First the high 4 data bits with strobe (enable) set
- # and unset, then same with low 4 data bits (strobe 1/0).
- data.extend(self.out4(bitmask, ord(v)))
- # I2C block data write is limited to 32 bytes max.
- # If limit reached, write data so far and clear.
- # Also do this on last byte if not otherwise handled.
- if (len(data) >= 32) or (i == last):
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, self.MCP23017_GPIOB, data)
- self.portb = data[-1] # Save state of last byte out
- data = [] # Clear list for next iteration
- elif isinstance(value, list):
- # Same as above, but for list instead of string
- last = len(value) - 1
- data = []
- for i, v in enumerate(value):
- data.extend(self.out4(bitmask, v))
- if (len(data) >= 32) or (i == last):
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, self.MCP23017_GPIOB, data)
- self.portb = data[-1]
- data = []
- else:
- # Single byte
- data = self.out4(bitmask, value)
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, self.MCP23017_GPIOB, data)
- self.portb = data[-1]
-
- # If a poll-worthy instruction was issued, reconfigure D7
- # pin as input to indicate need for polling on next call.
- if (not char_mode) and (value in self.pollables):
- self.ddrb |= 0b00010000
- self.i2c.bus.write_byte_data(self.i2c.address,
- self.MCP23017_IODIRB, self.ddrb)
-
-
- # ----------------------------------------------------------------------
- # Utility methods
-
- def begin(self, cols, lines):
- self.currline = 0
- self.numlines = lines
- self.clear()
-
-
- # Puts the MCP23017 back in Bank 0 + sequential write mode so
- # that other code using the 'classic' library can still work.
- # Any code using this newer version of the library should
- # consider adding an atexit() handler that calls this.
- def stop(self):
- self.porta = 0b11000000 # Turn off LEDs on the way out
- self.portb = 0b00000001
- sleep(0.0015)
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_IOCON_BANK1, 0)
- self.i2c.bus.write_i2c_block_data(
- self.i2c.address, 0,
- [ 0b00111111, # IODIRA
- self.ddrb , # IODIRB
- 0b00000000, # IPOLA
- 0b00000000, # IPOLB
- 0b00000000, # GPINTENA
- 0b00000000, # GPINTENB
- 0b00000000, # DEFVALA
- 0b00000000, # DEFVALB
- 0b00000000, # INTCONA
- 0b00000000, # INTCONB
- 0b00000000, # IOCON
- 0b00000000, # IOCON
- 0b00111111, # GPPUA
- 0b00000000, # GPPUB
- 0b00000000, # INTFA
- 0b00000000, # INTFB
- 0b00000000, # INTCAPA
- 0b00000000, # INTCAPB
- self.porta, # GPIOA
- self.portb, # GPIOB
- self.porta, # OLATA
- self.portb ]) # OLATB
-
-
- def clear(self):
- self.write(self.LCD_CLEARDISPLAY)
-
-
- def home(self):
- self.write(self.LCD_RETURNHOME)
-
-
- row_offsets = ( 0x00, 0x40, 0x14, 0x54 )
- def setCursor(self, col, row):
- if row > self.numlines: row = self.numlines - 1
- elif row < 0: row = 0
- self.write(self.LCD_SETDDRAMADDR | (col + self.row_offsets[row]))
-
-
- def display(self):
- """ Turn the display on (quickly) """
- self.displaycontrol |= self.LCD_DISPLAYON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noDisplay(self):
- """ Turn the display off (quickly) """
- self.displaycontrol &= ~self.LCD_DISPLAYON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def cursor(self):
- """ Underline cursor on """
- self.displaycontrol |= self.LCD_CURSORON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noCursor(self):
- """ Underline cursor off """
- self.displaycontrol &= ~self.LCD_CURSORON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def ToggleCursor(self):
- """ Toggles the underline cursor On/Off """
- self.displaycontrol ^= self.LCD_CURSORON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def blink(self):
- """ Turn on the blinking cursor """
- self.displaycontrol |= self.LCD_BLINKON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def noBlink(self):
- """ Turn off the blinking cursor """
- self.displaycontrol &= ~self.LCD_BLINKON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def ToggleBlink(self):
- """ Toggles the blinking cursor """
- self.displaycontrol ^= self.LCD_BLINKON
- self.write(self.LCD_DISPLAYCONTROL | self.displaycontrol)
-
-
- def scrollDisplayLeft(self):
- """ These commands scroll the display without changing the RAM """
- self.displayshift = self.LCD_DISPLAYMOVE | self.LCD_MOVELEFT
- self.write(self.LCD_CURSORSHIFT | self.displayshift)
-
-
- def scrollDisplayRight(self):
- """ These commands scroll the display without changing the RAM """
- self.displayshift = self.LCD_DISPLAYMOVE | self.LCD_MOVERIGHT
- self.write(self.LCD_CURSORSHIFT | self.displayshift)
-
-
- def leftToRight(self):
- """ This is for text that flows left to right """
- self.displaymode |= self.LCD_ENTRYLEFT
- self.write(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def rightToLeft(self):
- """ This is for text that flows right to left """
- self.displaymode &= ~self.LCD_ENTRYLEFT
- self.write(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def autoscroll(self):
- """ This will 'right justify' text from the cursor """
- self.displaymode |= self.LCD_ENTRYSHIFTINCREMENT
- self.write(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def noAutoscroll(self):
- """ This will 'left justify' text from the cursor """
- self.displaymode &= ~self.LCD_ENTRYSHIFTINCREMENT
- self.write(self.LCD_ENTRYMODESET | self.displaymode)
-
-
- def createChar(self, location, bitmap):
- self.write(self.LCD_SETCGRAMADDR | ((location & 7) << 3))
- self.write(bitmap, True)
- self.write(self.LCD_SETDDRAMADDR)
-
-
- def message(self, text):
- """ Send string to LCD. Newline wraps to second line"""
- lines = str(text).split('\n') # Split at newline(s)
- for i, line in enumerate(lines): # For each substring...
- if i > 0: # If newline(s),
- self.write(0xC0) # set DDRAM address to 2nd line
- self.write(line, True) # Issue substring
-
-
- def backlight(self, color):
- c = ~color
- self.porta = (self.porta & 0b00111111) | ((c & 0b011) << 6)
- self.portb = (self.portb & 0b11111110) | ((c & 0b100) >> 2)
- # Has to be done as two writes because sequential operation is off.
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_GPIOA, self.porta)
- self.i2c.bus.write_byte_data(
- self.i2c.address, self.MCP23017_GPIOB, self.portb)
-
-
- # Read state of single button
- def buttonPressed(self, b):
- return (self.i2c.readU8(self.MCP23017_GPIOA) >> b) & 1
-
-
- # Read and return bitmask of combined button state
- def buttons(self):
- return self.i2c.readU8(self.MCP23017_GPIOA) & 0b11111
-
-
- # ----------------------------------------------------------------------
- # Test code
-
-if __name__ == '__main__':
-
- lcd = Adafruit_CharLCDPlate()
- lcd.begin(16, 2)
- lcd.clear()
- lcd.message("Adafruit RGB LCD\nPlate w/Keypad!")
- sleep(1)
-
- col = (('Red' , lcd.RED) , ('Yellow', lcd.YELLOW), ('Green' , lcd.GREEN),
- ('Teal', lcd.TEAL), ('Blue' , lcd.BLUE) , ('Violet', lcd.VIOLET),
- ('Off' , lcd.OFF) , ('On' , lcd.ON))
-
- print "Cycle thru backlight colors"
- for c in col:
- print c[0]
- lcd.clear()
- lcd.message(c[0])
- lcd.backlight(c[1])
- sleep(0.5)
-
- btn = ((lcd.SELECT, 'Select', lcd.ON),
- (lcd.LEFT , 'Left' , lcd.RED),
- (lcd.UP , 'Up' , lcd.BLUE),
- (lcd.DOWN , 'Down' , lcd.GREEN),
- (lcd.RIGHT , 'Right' , lcd.VIOLET))
-
- print "Try buttons on plate"
- lcd.clear()
- lcd.message("Try buttons")
- prev = -1
- while True:
- for b in btn:
- if lcd.buttonPressed(b[0]):
- if b is not prev:
- print b[1]
- lcd.clear()
- lcd.message(b[1])
- lcd.backlight(b[2])
- prev = b
- break
diff --git a/Adafruit_CharLCDPlate/Adafruit_I2C.py b/Adafruit_CharLCDPlate/Adafruit_I2C.py
deleted file mode 120000
index f5fcefeb..00000000
--- a/Adafruit_CharLCDPlate/Adafruit_I2C.py
+++ /dev/null
@@ -1 +0,0 @@
-../../Adafruit-Raspberry-Pi-Python-Code/Adafruit_I2C/Adafruit_I2C.py
\ No newline at end of file
diff --git a/Adafruit_CharLCDPlate/Adafruit_MCP230xx.py b/Adafruit_CharLCDPlate/Adafruit_MCP230xx.py
deleted file mode 120000
index 4e89f685..00000000
--- a/Adafruit_CharLCDPlate/Adafruit_MCP230xx.py
+++ /dev/null
@@ -1 +0,0 @@
-../../Adafruit-Raspberry-Pi-Python-Code/Adafruit_MCP230xx/Adafruit_MCP230xx.py
\ No newline at end of file
diff --git a/Adafruit_CharLCDPlate/LCDtest.py b/Adafruit_CharLCDPlate/LCDtest.py
deleted file mode 100644
index cbda5c2c..00000000
--- a/Adafruit_CharLCDPlate/LCDtest.py
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/python
-
-from time import sleep
-from Adafruit_CharLCDPlate import Adafruit_CharLCDPlate
-
-# Initialize the LCD plate. Should auto-detect correct I2C bus. If not,
-# pass '0' for early 256 MB Model B boards or '1' for all later versions
-lcd = Adafruit_CharLCDPlate()
-
-# Clear display and show greeting, pause 1 sec
-lcd.clear()
-lcd.message("Adafruit RGB LCD\nPlate w/Keypad!")
-sleep(1)
-
-# Cycle through backlight colors
-col = (lcd.RED , lcd.YELLOW, lcd.GREEN, lcd.TEAL,
- lcd.BLUE, lcd.VIOLET, lcd.ON , lcd.OFF)
-for c in col:
- lcd.backlight(c)
- sleep(.5)
-
-# Poll buttons, display message & set backlight accordingly
-btn = ((lcd.LEFT , 'Red Red Wine' , lcd.RED),
- (lcd.UP , 'Sita sings\nthe blues' , lcd.BLUE),
- (lcd.DOWN , 'I see fields\nof green' , lcd.GREEN),
- (lcd.RIGHT , 'Purple mountain\nmajesties', lcd.VIOLET),
- (lcd.SELECT, '' , lcd.ON))
-prev = -1
-while True:
- for b in btn:
- if lcd.buttonPressed(b[0]):
- if b is not prev:
- lcd.clear()
- lcd.message(b[1])
- lcd.backlight(b[2])
- prev = b
- break
diff --git a/Adafruit_DHT_Driver/Adafruit_DHT b/Adafruit_DHT_Driver/Adafruit_DHT
deleted file mode 100755
index 40f4c416..00000000
Binary files a/Adafruit_DHT_Driver/Adafruit_DHT and /dev/null differ
diff --git a/Adafruit_DHT_Driver/Adafruit_DHT.c b/Adafruit_DHT_Driver/Adafruit_DHT.c
deleted file mode 100644
index 9d1746be..00000000
--- a/Adafruit_DHT_Driver/Adafruit_DHT.c
+++ /dev/null
@@ -1,148 +0,0 @@
-// How to access GPIO registers from C-code on the Raspberry-Pi
-// Example program
-// 15-January-2012
-// Dom and Gert
-//
-
-
-// Access from ARM Running Linux
-
-#define BCM2708_PERI_BASE 0x20000000
-#define GPIO_BASE (BCM2708_PERI_BASE + 0x200000) /* GPIO controller */
-
-
-#include
Visit https://circuitpython.org/blinka for more information
+CircuitPython has support for almost 200 different drivers, and a as well as FT232H support for Mac/Win/Linux!
+ +## But I **need** the old code! What can I do? + +Don't worry the old Adafruit Raspberry-Pi Python code can be found in the +[legacy branch](https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code/tree/legacy) of this repository. This is a snapshot of the old code before it +was refactored into individual libraries. **Note this legacy code will not be +maintained!**