I have a simple test sketch to run for my led aquarium:
#include <IRremote.h>
#include <IRremoteInt.h>
IRsend irsend;
void setup() {
}
void loop() {
irsend.sendNEC(0xF7C03F, 32);
delay (2000);
}
I am using a 850nm Infrared LED and a 330Ohm resistor.
The connection:
Digital 3 to Resistor -> GND

On the Arduino nano it runs perfectly: the LED of my aquarium turns on and off like the sketch tells it to. But on the Pro Mini nothing happens.
To be honest, it is my first time using the pro mini. Maybe I forgot something??? I am using a FTDI232 (set to 5V) to flash it.
Hope someone can help me. Kind regard Daniel :)