#define LED_PWR_PIN 9 // half a second int count = 0; // if not defined then code is ignored void setup() { // put your setup code here, to run once: pinMode(LED_PWR_PIN, OUTPUT); Serial.begin(9600); } void loop() { digitalWrite(LED_PWR_PIN, LOW); }