-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
Receive_Raw example not compiling - Arduino IDE 1.8.5 #19
Comments
Jup. Outdated :/ |
Any update on this? I need it.. Can't combine IRLremote with RC5 |
I face the same issue. is there any solution!!! |
is there any solution to this issue?? |
Need a solution as well.. :( |
The solution is to use IRremote 😀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Receive_Raw:32: error: 'CIRLremote' does not name a type
CIRLremote IRLremote;
^
/home/my_home/Arduino/libraries/IRLremote/examples/Receive_Raw/Receive_Raw.ino: In function 'void setup()':
Receive_Raw:46: error: 'IRLremote' was not declared in this scope
if (!IRLremote.begin(pinIR))
^
/home/my_home/Arduino/libraries/IRLremote/examples/Receive_Raw/Receive_Raw.ino: In function 'void loop()':
Receive_Raw:51: error: 'IRLremote' was not declared in this scope
if (IRLremote.available()) {
^
Receive_Raw:71: error: 'RawIR' was not declared in this scope
for (typeof(RawIR::countRawIR) i = 0; i < RawIR::countRawIR; i++) {
^
Receive_Raw:71: error: expected primary-expression before 'typeof'
for (typeof(RawIR::countRawIR) i = 0; i < RawIR::countRawIR; i++) {
^
Receive_Raw:71: error: 'i' was not declared in this scope
for (typeof(RawIR::countRawIR) i = 0; i < RawIR::countRawIR; i++) {
^
Receive_Raw:71: error: 'RawIR' is not a class, namespace, or enumeration
for (typeof(RawIR::countRawIR) i = 0; i < RawIR::countRawIR; i++) {
^
Receive_Raw:74: error: 'RawIR' is not a class, namespace, or enumeration
Serial.println(RawIR::dataRawIR[i], DEC);
^
Receive_Raw:78: error: 'RawIR' has not been declared
if (RawIR::countRawIR == RAWIR_BLOCKS) {
^
Receive_Raw:78: error: 'RAWIR_BLOCKS' was not declared in this scope
if (RawIR::countRawIR == RAWIR_BLOCKS) {
^
Receive_Raw:85: error: 'IR_data_t' was not declared in this scope
IR_data_t data = IRLremote.read();
^
Receive_Raw:91: error: 'data' was not declared in this scope
Serial.println(data.address, DEC);
^
exit status 1
'CIRLremote' does not name a type
The text was updated successfully, but these errors were encountered: