Skip to content

Commit 304a6ca

Browse files
committed
still debugging api-no-title shpinx
1 parent 2079f90 commit 304a6ca

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

adafruit_character_lcd/mcp23008.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
"""MCP23008 I2C GPIO Extender Driver
1+
"""
2+
`adafruit_character_lcd.mcp23008`
3+
=========================================
4+
5+
MCP23008 I2C GPIO Extender Driver
26
Bare-bones driver for the MCP23008 driver, as used by the character LCD
37
backpack. This exposes the MCP2308 and its pins as standard CircuitPython
48
digitalio pins. Currently this is integrated in the character LCD class for
59
simplicity and reduction in dependent imports, but it could be broken out
6-
into a standalone library later."""
7-
# Author: Tony DiCola
10+
into a standalone library later.
11+
12+
* Author: Tony DiCola
13+
14+
"""
815
import digitalio
916

1017
import adafruit_bus_device.i2c_device as i2c_device

adafruit_character_lcd/shift_reg_74hc595.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
"""74HC595 Serial to Paralllel Shift Register Driver
1+
"""
2+
`adafruit_character_led.shift_reg_74hc595`
3+
===============================================
4+
5+
74HC595 Serial to Paralllel Shift Register Driver
26
Bare-bones driver for the 74HC595, as used by the character LCD
37
backpack. This exposes the 74HC595 and its pins as standard CircuitPython
48
digitalio pins. Currently this is integrated in the character LCD class for
59
simplicity and reduction in dependent imports, but it could be broken out
610
into a standalone library later.
11+
12+
* Author: Tony DiCola
713
"""
8-
# Author: Tony DiCola
914
import digitalio
1015

1116
import adafruit_bus_device.spi_device as spi_device

0 commit comments

Comments
 (0)