int switchPin = 4; // Switch connected to pin 4
void setup() {
pinMode(2, INPUT_PULLUP); // Set pin 0 as an input
Serial.begin(9600); // Start serial communication at 9600 bps
}
void loop() {
if (digitalRead(2) == HIGH) { // If switch is ON,
Serial.write(1); // send 1 to Processing
} else { // If the switch is not ON,
Serial.write(0); // send 0 to Processing
}
delay(100); // Wait 100 milliseconds
}
用maker uno接地線
控制方塊顏色
沒有留言:
張貼留言