I just completed the 'Drive a 16x2 LCD with the Raspberry Pi" tutorial. I constructed the cobbler and wired the board after setting up the LCD. When I connect to the Pi via the ribbon cable, the LCD glows and I can set the contrast.
I loaded all appropriate software via the instructions. When I run Adafruit_CharLCD.py I get the following error:
Adafruit_CharLCD.py:73: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
self.GPIO.setup(self.pin_e, GPIO.OUT)
Adafruit_CharLCD.py:77: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
self.GPIO.setup(pin, GPIO.OUT)
This error occurs whether or not the board is connected to the Pi. It seems it thinks the GPIO channel is already in use. When I disable the warning, nothing happens on the LCD.
Any help would be appreciated.
Steve

