Adafruit_CircuitPython_CharLCD
                                
                                 Adafruit_CircuitPython_CharLCD copied to clipboard
                                
                                    Adafruit_CircuitPython_CharLCD copied to clipboard
                            
                            
                            
                        Library code for character LCD interfacing
While using the i2c/SPI LCD Backpack Maximum recursion depth exceeded. Adafruit CircuitPython 7.0.0 on 2021-09-20; Adafruit Metro M0 Express with samd21g18 Traceback (most recent call last): File "main.py", line 1,...
Hi, I'm using one of the older Adafruit i2c 16x2 RGB LCD Pi Plates with a Rasp. Pi 2 Model B v1.1 CircuitPython_CharLCD is working fine, but message draw is...
I tried to use your driver to display a string with degree sign in it. The string I tried to display is uString = 'Temp: 30' + u'\N{DEGREE SIGN}' +...
There are missing type annotations for some functions in this library. The `typing` module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to...
Hello, I am trying to use this library with a 16x4 character display. Looking at the code (snippet below) there are hardcoded offsets for the third and fourth rows, with...
Re: https://forums.adafruit.com/viewtopic.php?f=63&t=149682 Can recreate with following: ```python Adafruit CircuitPython 3.1.2 on 2019-01-07; Adafruit Metro M0 Express with samd21g18 >>> import board, busio >>> import adafruit_character_lcd.character_lcd_i2c as character_lcd >>> i2c =...
Added type hints to all functions. Edited `character_lcd.color` setter to resolve a typing conflict with a `float` used when an `int` was expected in the line `pin.duty_cycle = int(_map(color[number], 0,...
I tried using charlcd_i2c class in my circuitpython code, and all it says is just incompatible .mpy file. I tried all solutions, including rolling back to an older bundle from...
To install with circup use: `circup install adafruit-circuitpython-character-lcd` Would be nice if pypi and circup used the same name. `pip3 install adafruit-circuitpython-charlcd`
`pylint` suggests using argument names with at least 3 letters. This library uses argument names of shorter length, and while these warnings have been disabled for now, they should be...