Skip to content

Instantly share code, notes, and snippets.

View ssharpjr's full-sized avatar

Stacey Sharp ssharpjr

View GitHub Profile
### Keybase proof
I hereby claim:
* I am ssharpjr on github.
* I am daikojun (https://keybase.io/daikojun) on keybase.
* I have a public key ASBGu2kA69jwITqr5OLqH-h3jmxLcpfvRHbvxCTMh_YFawo
To claim this, I am signing this object:
Python 3.2.3 (default, Mar 1 2013, 11:53:50)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import absolute_import
>>> from Adafruit_CharLCD.Adafruit_CharLCD import *
>>> lcd = Adafruit_CharLCD.Adafruit_CharLCDPlate()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Adafruit_CharLCD' has no attribute 'Adafruit_CharLCDPlate'
>>>
Python 3.2.3 (default, Mar 1 2013, 11:53:50)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Adafruit_CharLCD as LCD
>>> lcd = LCD.Adafruit_CharLCDPlate()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'Adafruit_CharLCDPlate'
>>>