I want to add a TSL2561 to an existing (Model B, Wheezy) system that is built on Python 2.7, and uses some other GPIOs (not using I2C), with the module rpi.GPIO.
The TSL2561 python library has a dependency on Adafruit_GPIO.
This article says Adafruit_GPIO is a "wrapper for original RPi.GPIO library as well as the Beaglebone's"
tsl2561.py imports Adafruit_GPIO, but does not use GPIO, only I2C.
Is it possible to separately import the required I2C module for the TSL2561 , without breaking existing code that uses rpi.gpio? If so, which I2C module would match the conventions of tsl2561.py?