2015-04-19 59 views

回答

1

您不能直接從AD5206讀取數據,但是如果您真的想要的話,可以將AD5206的輸出引腳連接到您的arduinos模擬引腳並讀取它。

關閉我的頭頂,它會是這個樣子:

int potValue = (analogRead(analogPin)/1023) * 255; // divide analog pin value by 1023 to find fractional value then multiplied by 255 for pots value 

可能不是100%準確,但它應該是在+/- 1

+0

謝謝你的幫助;我會給那一槍。 – Blau