Simulates an Unicorn HAT HD (and should work for the 8x8 HAT and the 8x4 PHAT as well) using pygame.
If you want your code to run on your computer as well as your Pi, you could do something like this:
pip install unicorn-hat-sim
(orpip2
orpip3
depending on your setup)- Adjust your
import unicornhathd
statement as follows:
try:
import unicornhathd as unicorn
print("unicorn hat hd detected")
except ImportError:
from unicorn_hat_sim import unicornhathd as unicorn
You can choose from import unicornhathd
(16x16), import unicornhat
(8x8) and import unicornphat
(8x4).
(Note that this gif has a low framerate, the simulator runs nice and smooth in real life)
- find a python person who shows me how this would be done properly
- fix/check rotation
- add a proper LED glow effect so it looks more like a real unicorn HAT
- publish via pip