Part Number:ADS1262
Hi ,
I am using ads1262 adc with Raspberry pi controller, I am trying to read and write the register values. My connection are like this
adc1262 Raspberry pi 3
vin 3.3V
ground ground
mosi mosi pin
miso miso pin
sclk sclk
pwdm gpio
start gnd
I am using Adafruit library, when i read the register value I get 0 always, My code is like this
send = [0x24,0x00]
data = spi.transfer(send)
print data[1]
# I also tried with spi.read() function also i am getting the same.
Can anyone help me with this.