File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
- """MCP23008 I2C GPIO Extender Driver
1
+ """
2
+ `adafruit_character_lcd.mcp23008`
3
+ =========================================
4
+
5
+ MCP23008 I2C GPIO Extender Driver
2
6
Bare-bones driver for the MCP23008 driver, as used by the character LCD
3
7
backpack. This exposes the MCP2308 and its pins as standard CircuitPython
4
8
digitalio pins. Currently this is integrated in the character LCD class for
5
9
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
+ """
8
15
import digitalio
9
16
10
17
import adafruit_bus_device .i2c_device as i2c_device
Original file line number Diff line number Diff line change 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
2
6
Bare-bones driver for the 74HC595, as used by the character LCD
3
7
backpack. This exposes the 74HC595 and its pins as standard CircuitPython
4
8
digitalio pins. Currently this is integrated in the character LCD class for
5
9
simplicity and reduction in dependent imports, but it could be broken out
6
10
into a standalone library later.
11
+
12
+ * Author: Tony DiCola
7
13
"""
8
- # Author: Tony DiCola
9
14
import digitalio
10
15
11
16
import adafruit_bus_device .spi_device as spi_device
You can’t perform that action at this time.
0 commit comments