Metadata-Version: 2.4
Name: CubeRaspberryLib3
Version: 0.1.5
Summary: CubeRaspberryLib driver adapted to Python3 version
Home-page: https://github.com/rikonaka/CubeRaspberryLib3
Author: RikoNaka
Author-email: xxy1836@gmail.com
Keywords: raspberry,pi,driver
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: smbus2>=0.5.0
Requires-Dist: pillow>=11.3.0
Requires-Dist: Adafruit_SSD1306>=1.6.2
Dynamic: license-file

# CubeRaspberryLib3

CubeRaspberryLib driver adapted to Python 3 version.

**This is a personal project and has nothing to do with any commercial activity.**

## Preparation

Please check if there is any `i2c-*` device in `/dev`. If not, please use `raspi-config`->`3 Interface Options`->`I5 I2C` to enable it.

## Installation

### Developer Local Installation

Download the source file from [here](https://github.com/rikonaka/CubeRaspberryLib3)

```bash
pip install -e .
```

### Normal installation

```bash
pip install CubeRaspberryLib3
```

## Examples

```python3
from CubeRaspberryLib3 import Cube
cube = Cube(i2c_bus_number=1)
cube.set_fan(0)
```
