Skip to content

Commit 83c565a

Browse files
update docs
1 parent 6b6dca3 commit 83c565a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

cedargrove_ad5293.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,11 @@ class AD5293:
4444
placed on any of the three pins not exceed the analog power supply voltage.
4545
4646
The CircuitPython driver supports a single SPI potentiometer device per
47-
instance. It does not work with daisy-chained devices. The SDO pin is
48-
set to high-impedance.
47+
instance. Connecting the SDO pin to the SPI host input pin is not required
48+
nor recommended since the SDO pin could interfere with other SPI-connected
49+
devices.
50+
51+
This driver does not work with daisy-chained devices.
4952
5053
The Cedar Grove AD5293 custom breakout board provides power and signal
5154
connections for SPI and the potentiometer chip. The AD5293 is also used in
@@ -72,10 +75,6 @@ def __init__(self, spi=board.SPI(), select=board.D9, wiper=0):
7275
# Power on delay (2ms minimum)
7376
time.sleep(0.03)
7477

75-
# Disable SDO pin (high impedance)
76-
self._send_data(0x8001) # Disable SDO
77-
self._send_data(0x0000) # NOP
78-
7978
# Place device into normal mode (not powered-down)
8079
self._send_data(0x2000)
8180

0 commit comments

Comments
 (0)