Pin myPins[] = {2,3,4,5,6,7,8,9};
int myPinsSize =
sizeof(myPins) /
sizeof(
Pin);
void setup() {
for (int i = 0; i < myPinsSize; i++) {
}
}
void loop() {
for (int i = 0; i < myPinsSize; i++) {
}
delay(200);
for (int i = 0; i < myPinsSize; i++) {
}
delay(200);
}
Fast operations on Arduino I/O pins.
Class for fast operations on Arduino I/O pins.
void setHigh()
Set the pin output to HIGH.
void setOutput()
Set the pin mode to output.
void setLow()
Set the pin output to LOW.