adafruit_74hc595
¶
用于 74HC595 移位寄存器的 CircuitPython 驱动程序。
- Author(s): Kattni Rembor, Tony DiCola
实施说明¶
硬件:
“* 74HC595 移位寄存器 - 3 包”
软件和依赖:
- 支持的电路板的 Adafruit CircuitPython 固件: https://github.com/adafruit/circuitpython/releases
- Adafruit 的总线设备库:https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
-
class
adafruit_74hc595.
DigitalInOut
(pin_number, shift_register_74hc595)¶ 74HC595 的数字输入/输出。接口与
digitalio.DigitalInOut
类完全相同,但请注意,此设备设计为仅输出!尝试读取输入或将方向设置为输入将引发异常。-
direction
¶ Direction
只能设置为OUTPUT
.
-
pull
¶ 不支持上拉/下拉,不支持上拉/下拉返回 None。
-
switch_to_input
(**kwargs)¶ switch_to_input
不支持。
-
switch_to_output
(value=False, **kwargs)¶ DigitalInOut switch_to_output
-
value
¶ 引脚的值,True 表示高或 False 表示低。
-