8000 GitHub - Netfreak25/unicorn-hat-sim: Simulates a pimoroni unicornhat (HD) on your computer
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Netfreak25/unicorn-hat-sim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Unicorn HAT (HD) simulator

Simulates an Unicorn HAT HD (and should work for the 8x8 HAT and the 8x4 PHAT as well) using pygame.

Usage

If you want your code to run on your computer as well as your Pi, you could do something like this:

  1. pip install pygame (or pip2 or pip3 depending on your setup)
  2. wget https://raw.githubusercontent.com/jayniz/unicorn-hat-sim/master/unicorn_hat_sim.py (download unicorn_hat_sim.py and place it in your project folder)
  3. 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).

Demo

(Note that this gif has a low framerate, the simulator runs nice and smooth in real life)

TODO

  • 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

About

Simulates a pimoroni unicornhat (HD) on your computer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0