Sense HAT display adds random pixels
Posted: Thu Aug 03, 2017 3:27 pm
Hi, I ran into a strange issue with my brand new Sense HAT, when I run the simple script below multiple times random pixels start to light up. I have been able to run more advance programs as https://projects.raspberrypi.org/en/pro ... -astronaut on it and then it works fine but i can still from time to time see flashing pixels. Could this be normal?
First time script was run:
Second time script was run:
Third time script was run:
Code: Select all
from sense_hat import SenseHat
sense = SenseHat()
red = (255, 0, 0)
green = (0, 255, 0)
blue = (0, 0, 255)
sense.set_pixel(1,1,255,0,0)