我是python的新手,还是树莓派的新手,我已经将高精度AD / DA板连接到RPI 3模型B,并且我想更改ADC的采样时间,但不确定我还需要更改RPI读取时间,我发现了一些代码,例如
byte drate_reg = 3; // Choosing Data Rate register = third register.
byte drate_data = 0b11000000; // 11000000 = 3,750SPS
SPI.transfer(0x50 | drate_reg);
SPI.transfer(0x00); // 2nd command byte, write one register only
SPI.transfer(drate_data); // write the databyte to the register
delayMicroseconds(10);
但是,当我运行sudo ./ads1256_test
来验证其是否正确读取时,即使行byte drate_data = 0b11000000; // 11000000 = 3,750SPS
没有错误地运行,我也得到了没有改变的随机电压。 The reading I am getting are: