Metadata-Version: 2.1
Name: unicornhatsimulator
Version: 1.0.1
Summary: Unicorn HAT (HD) simulator - Originally by Jannis Hermanns <jannis@gmail.com>, modified by Mark Pitman <mark.pitman@gmail.com> and then adjusted by Matt Brash <matt@brash.ca>
Home-page: https://github.com/MisterBrash/unicornhatsimulator
Author: Matt Brash
Author-email: matt@brash.ca
License: MIT
Download-URL: https://github.com/MisterBrash/unicornhatsimulator/raw/main/archives/unicornhatsimulator-1.0.2.tar.gz
Description: # 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 unicornhatsimulator` (or `pip2` or `pip3` depending on your setup)
        1. Adjust your `import unicornhathd` statement as follows:
        
        ```python
        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)
        
        ![Demo](https://cl.ly/2s070z1k0L3J/Screen%20Recording%202017-06-26%20at%2011.12%20PM.gif)
        
        ## 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
        
Keywords: raspberrypi,unicorn,hat,led,simulator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
