Metadata-Version: 2.1
Name: sense-hat-matrix
Version: 0.0.3
Summary: Manipulate the LED matrix of the sense-hat
Home-page: https://github.com/szigyi/sense-hat-matrix
Project-URL: Bug Tracker, https://github.com/szigyi/sense-hat-matrix/issues
Project-URL: Changelog, https://github.com/szigyi/sense-hat-matrix/releases
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# sense-hat-matrix
## Usage
```python
from sense_hat import SenseHat
from Graph import Graph

min_temp = 20
max_temp = 24
sense    = SenseHat()
temp     = sense.get_temperature()
g        = Graph(min_temp, max_temp)
pixels   = g.render(temp)
sense.set_pixels(pixels)
```

## Dev
### Install project
   * `pip3 install -e . `

### Release new version
[Create new release with new `tag` on `github`](https://github.com/szigyi/sense-hat-matrix/releases/new)

