你們中的某個人可以幫我解決代碼問題?我得到了通用的編譯錯誤: 錯誤:預期前主表達式「{」令牌錯誤:在'{'令牌之前預期的初級表達式
與代碼這部分代碼:
for (int i=0; i<2; i++) {
PotValue[i] = analogRead(PotPin[i]); //This is the error line
MappedPotValue[i]=(PotValue[i]+1)/103;
//SomeCode Here
}
所以。我的目標是在PotValue陣列寫在Arduino板所有花盆的所有值
PotValue和MappedPotValue是
而且PotPin已被宣佈爲2 lenght的INT數組:
#define PotPin {A0, A1} // These are two analog pins on arduino board
的對循環是一個定時器中斷
THX內尋求幫助
'analogRead'採取了什麼參數? – 0x499602D2