Metadata-Version: 2.1
Name: lcd-st7032
Version: 0.1.0
Summary: Python module for ST7032 LCD controller with I2C interface.
Home-page: https://github.com/zakkie/py_lcd_st7032
Author: UNKNOWN
Author-email: zakkie@live.jp
License: MIT
Keywords: I2C lcd
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: Adafruit-PureIO (>=0.2.2)

# LCD_ST7032

Python module for ST7032 LCD controller with I2C interface. 
This module is inspired by https://github.com/olkal/LCD_ST7032

Tested with RaspberryPi 2, Python 3.6 and AQM1602XA-RN-GBW


# usage
```
$ pip install -r requirements.txt
$ pip install lcd_st7032
```

# Hello World

```python
from lcd_st7032 import ST7032

lcd = ST7032()
lcd.write("Hello World!")
```

# LICENSE

MIT

