Metadata-Version: 2.1
Name: digole
Version: 0.0.1.19
Summary: Digole LCD Drivers
Home-page: https://github.com/jethornton/digole
Author: John Thornton
Author-email: bjt128@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Dist: smbus2

Digole LCD Driver

Tested with Digole 160x128 Color LCD 1.8" DSDM/Serial

Raspberry Pi 3 B using the i2c bus

Install: pip3 install digole

Upgrade: pip3 install digole --upgrade

Usage:
``` python
from digole import lcd
use the default i2c address of 0x27
s = lcd()```

specify a different i2c address
``` python
s = lcd(0x29)```

clear the screen
``` python
s.clearScreen()```

write a line of text
``` python
s.writeLine('Text to write')```

change X start position
from the left edge in columns
``` python
s.changePosition(x)```

change XY start position of the text
from the top left corner in columns, rows
``` python
s.changePosition(x,y)
s.changePosition(0,2) # start the text on column 0 row 2```


