Hi, I soldered 4 others, using AA holder instead, figuring it won't hurt as I have room for it. I changed:
//
/* Initialization */
//
void setup()
{
//Setup LED INFO pin
pinMode(LED_PIN_INFO, OUTPUT);
//Setup LED WARNING pin
pinMode(LED_PIN_WARN, OUTPUT);
//Set moisutre sensor pins
for (int i = 0; i < N_ELEMENTS(SENSOR_ANALOG_PINS); i++)
{
pinMode(SENSOR_ANALOG_PINS[i], OUTPUT);
digitalWrite(SENSOR_ANALOG_PINS[i], LOW);
}
//Blink leds to check
blinkLed(LED_PIN_INFO,800);
blinkLed(LED_PIN_WARN,800);
blinkLed(LED_PIN_INFO,400);
blinkLed(LED_PIN_WARN,400);
blinkLed(LED_PIN_INFO,200);
blinkLed(LED_PIN_WARN,200);
blinkLed(LED_PIN_INFO,100);
blinkLed(LED_PIN_WARN,100);
}
To test Leds when initializing and never managed ot have LED1 blink ? Dunno what I did wrong, I used correct resistor and normal 3mm leds, tested the pads and realizing that GND was the pad further from the edge; aligned with the - from the neighboor capacitor... What did I do wrong ?
Thanks,
Grumpf.