irsend.sendNEC doesn't seem to be working

DrDiettrich:
Some #include seems to be missing :frowning:

Any idea which one?

The header files of the IRremote library, used for sending IR codes.

DrDiettrich:
The header files of the IRremote library, used for sending IR codes.

Which would be???? I'm really sorry that I'm not the expert you expect me to be.

I found this video. I used the same sketch and hit the reset just as in the video but nothing's happening. I'm done. I apologize for wasting your time.

#include <IRremote.h>

IRsend irsend;

void setup()
{
}

void loop() {
	for (int i = 0; i < 3; i++) {
		irsend.sendSony(0xa90, 12);
		delay(40);
	}
	delay(5000); //5 second delay between each signal burst
}