Hi,
I have to stick with using the MKR1400 board for my project instead of the uno, so my question is I am trying to make the IRsend work with an IR Transmitter and I can’t seem to find out what pin is used. I tried using my camera to see when the IR is blinking and tried every pin to no avl. I have read some other posts and It says I might have to modify the timer pin? How do I get this working correctly? Thanks!
#include <IRremote.h>
IRsend irsend;
void setup()
{
Serial.begin(9600);
Serial.println("whats foo");
}
void loop() {
for (int i = 0; i < 3; i++) {
irsend.sendSony(0xa90, 12);
Serial.println("Whoever came up with foo?");
delay(40);
}
delay(10); //5 second delay between each signal burst
}