// By Nissanka MD COTM
#define PinDP 2
#define PinC 3
void setup() {
// put your setup code here, to run once:
pinMode(PinC,OUTPUT);
digitalWrite(PinC, HIGH);
delay(1000);
digitalWrite(PinC, LOW);
}
void loop() {
// put your main code here, to run repeatedly:
}