Metadata-Version: 2.1
Name: revcolorsensor
Version: 1.0.5
Summary: This is a Python library that allows Raspberry Pi's to use the REV Color Sensor without a Roborio/FRC project.
Author: Jason Li
Author-email: jasonli.0616@outlook.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pigpio (>=1.78,<2.0)
Description-Content-Type: text/markdown

# revcolorsensor

This is a Python library that allows Raspberry Pi's to use the [REV Color Sensor](https://www.revrobotics.com/rev-31-1557/) without a Roborio/FRC project.

## Installation

```
pip3 install revcolorsensor
```

## pigpio

You will need to run the [`pigpio` daemon](https://abyz.me.uk/rpi/pigpio/) for this library to work.

Install with:

```
sudo apt-get install pigpiod
```

You can run this after booting up the Raspberry Pi:

```
sudo pigpiod
```

or, run this *once* and it will do it automatically on boot each time:

```
sudo systemctl enable pigpiod
```

## Resources

[API Docs](https://jasonli0616.github.io/revcolorsensor/revcolorsensor/)

[Examples](https://github.com/jasonli0616/revcolorsensor/tree/master/examples)

[Pypi](https://pypi.org/project/revcolorsensor/)
