I posted a question yesterday about a SenseHat error message that Python couldn't detect the device;
Python 3.4.2 (default, Oct 19 2014, 13:31:11)
[GCC 4.9.1] on linux
Type "copyright", "credits" or "license()" for more information.
>>> from sense_hat import SenseHat
>>> sense = SenseHat()
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
sense = SenseHat()
File "/usr/lib/python3/dist-packages/sense_hat/sense_hat.py", line 36, in __init__
raise OSError('Cannot detect %s device' % self.SENSE_HAT_FB_NAME)
OSError: Cannot detect RPi-Sense FB device
>>>
I have since done some research, and if I do a i2cdetect 1 command, I get in response 1c, 46,6a, 5c,and 5f! Is this what I should see? I am ready to return the device for another one if I can't sem to get this one to work, so any help would be greatly appreciated!
Thanks