bonjour
ce message "unterminated argument list invoking macro "bitWrite" apparaît quand je débogue
Je ne comprends pas ce que j'ai omis...
const int relayPins[] = {2,3,4,5,6,7,8,9};
byte readRelays = B00000000;
void setup()
{
for(int i=0; i<8; i++)
{
pinMode(relayPins[i], OUTPUT);
pinMode(ledPins[i], OUTPUT);
}
}
void loop()
{
for(int i=0; i<8; i++)
{
bitWrite(readRelays, i, digitalRead(relayPins[i]);
}
}
Merci d'avance pour toute aide!
salutations