#define GPID_Pin 8
void setup() {
// put your setup code here, to run once:
pinMode(GPID_Pin,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(GPID_Pin, HIGH);
}
#define GPID_Pin 8
void setup() {
// put your setup code here, to run once:
pinMode(GPID_Pin,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(GPID_Pin, HIGH);
}