Metadata-Version: 2.1
Name: sense-hat-matrix
Version: 0.0.4
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 sense_hat_matrix.Graph import Graph
from sense_hat_matrix.GraphUtil import temp_colour
from sense_hat_matrix.GraphUtil import rescale

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)
```

### Example project
   * [pi Weather Station](https://github.com/szigyi/pi-weather-station)

## 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)

