int Pin1: 2;
void setup() {
pinMode(Pin1, OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(Pin1, HIGH);
}
int Pin1: 2;
void setup() {
pinMode(Pin1, OUTPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(Pin1, HIGH);
}