Metadata-Version: 1.1
Name: digole
Version: 0.0.1.16
Summary: Digole LCD Drivers
Home-page: https://github.com/jethornton/digole
Author: John Thornton
Author-email: bjt128@gmail.com
License: MIT License
Description: # digole
        Digole LCD Driver
        
        Install:
        pip3 install digole
        
        Upgrade:
        pip3 install digole --upgrade
        
        Usage:
        from digole import lcd
        use the default i2c address of 0x27
        s = lcd()
        
        specify a different i2c address
        s = lcd(0x29)
        
        clear the screen
        s.clearScreen()
        
        write a line of text (line number, text to write)
        s.writeLine(1, 'Text to write')
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
