-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V172 compiles for Uno but does not run #2
Comments
Please use IDE 1.5.8 or newer (in general). 1.0.6 has a bug that there is a definition missing. I filed an issue on github: |
There was a critical bug that the whole IRLremote was broken due to a typo. Thx! I also added a notice to the readme for 1.0.6 users to add a define or just use the interrupt number. Please test the teensy again. I cannot help you more unless i own a teensy. |
Confirming that it WAS broken on an UNO a day ago (on 1.0.5-r2). Re-downloaded Master and it's now working. Oh, and if/when I get to using a Teensy and find it's not working with IRLRemote. . . I'll buy one and mail it to you for testing. 💃 |
Hey, that'd be great :) Thx for the confirmation about the Uno. I'll leave this issue open for the Teensy. It would also be nice if someone can test several remotes and look if they are recognized. Especially check the RAW output and compare since it could accidentally recognize it as wrong protocol maybe. I'd love to add some more protocols. The main protocols should work though. |
It should compile with 1.5.8 and 1.0.6 fine now. Added a workaround for 1.0.6 (its an Arduino bug, has nothing to do with this lib still) |
V1.73 works for me as well on the Uno |
Nice to hear :) What about Teensy? Does it work? |
Nope, It compiles, lots of warnings though. On Tue, Dec 2, 2014 at 10:01 AM, Nico [email protected] wrote:
|
Can you please comment on the new issue and tell me what teensy board you are using? I dont have any teensy, so i cannot really help you that much. |
Running the ARM based Teensy 3.0 and 3.1 boards |
Please post anything related to this bug here: |
I tried 172, it compiled for Teensy, but no serial output if the library was in use, commenting out IRLbegin<IR_ALL>(interruptIR); would allow serial output on the Teensy.
I then tried 1.7.2 on an Uno, the examples/Demos/Receive_Blocking and NoBlocking would not compile.
Line: const int pinReceiveIR = digitalPinToInterrupt(2); Caused an error when compiling Receive_NoBlocking:14: error: 'NOT_AN_INTERRUPT' was not declared in this scope.'
Editted this line back to the 171 convention of const int pinReceiveIR = 0; with my IR module output pin on Digital Pin2
and I get the initial serial console message: Startup, but no data on button presses with 1.7.2.
Neither Receive_Blocking and Receive_NoBlocking work in V172 on the Uno,
If I revert back to V171 library, both examples work correctly
I'm running the 1.0.6 IDE, installed the library per the instructions in the readme.
Tried 1.5.2 IDE on my Uno, same results with 1.7.2, but 1.7.1 works.
The text was updated successfully, but these errors were encountered: