This report was generated on Wednesday, 23-Feb-22 22:48:15 CET using arduino-testlib.
Version: 3.3.0
More details
Board | Claims compatibility | Inclusion | OneButton |
Callback |
DebounceTest |
EasyButtonExample |
---|---|---|---|---|---|---|
arduino:avr:uno
1.8.4 |
Yes | PASS | PASS | PASS | PASS | PASS |
arduino:mbed_nano:nanorp2040connect
2.7.2 |
No ⚠️ | PASS | FAIL | FAIL | FAIL | FAIL |
arduino:megaavr:nona4809
1.8.7 |
No ⚠️ | PASS | FAIL | FAIL | FAIL | FAIL |
arduino:samd:mkrwifi1010
1.8.12 |
No ⚠️ | PASS | FAIL | FAIL | FAIL | FAIL |
esp32:esp32:d1_mini32
1.0.6 |
No ⚠️ | PASS | FAIL | FAIL | FAIL | FAIL |
Result: PASS
Sketch uses 444 bytes (1%) of program storage space. Maximum is 32256 bytes. Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.
Result: PASS
Sketch uses 3200 bytes (9%) of program storage space. Maximum is 32256 bytes. Global variables use 209 bytes (10%) of dynamic memory, leaving 1839 bytes for local variables. Maximum is 2048 bytes.
Result: PASS
Sketch uses 3104 bytes (9%) of program storage space. Maximum is 32256 bytes. Global variables use 211 bytes (10%) of dynamic memory, leaving 1837 bytes for local variables. Maximum is 2048 bytes.
Result: PASS
Sketch uses 3344 bytes (10%) of program storage space. Maximum is 32256 bytes. Global variables use 252 bytes (12%) of dynamic memory, leaving 1796 bytes for local variables. Maximum is 2048 bytes.
Result: PASS
Sketch uses 2522 bytes (7%) of program storage space. Maximum is 32256 bytes. Global variables use 209 bytes (10%) of dynamic memory, leaving 1839 bytes for local variables. Maximum is 2048 bytes.
Result: PASS
Sketch uses 78756 bytes (0%) of program storage space. Maximum is 16777216 bytes. Global variables use 43444 bytes (16%) of dynamic memory, leaving 226892 bytes for local variables. Maximum is 270336 bytes.
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:35:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress, &handleButtonRelease); // Button is connected to INT0 (pin2) ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:80:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress(300)) { ^~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonRelease(bool, uint16_t)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:100:39: error: 'EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS' was not declared in this scope if (aButtonPressDurationMillis >= EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:107:9: error: 'Button0AtPin2' was not declared in this scope Button0AtPin2.ButtonToggleState = false; ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:38:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:67:31: error: 'Button0AtPin2' was not declared in this scope digitalWrite(LED_BUILTIN, Button0AtPin2.ButtonToggleState); ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:65:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress); // Only callback parameter -> button is connected to INT0 ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:66:1: error: 'EasyButton' does not name a type EasyButton Button1AtPin3(BUTTON_AT_INT1_OR_PCINT); // Button is connected to INT1 or PCINT[0:7] ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:88:5: error: 'Button1AtPin3' was not declared in this scope Button1AtPin3.updateButtonState(); // this is ONLY required if we expect a regular button press which is shorter than BUTTON_DEBOUNCING_MILLIS! ^~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:114:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress()) { ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:43:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:62:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.ButtonStateHasJustChanged) { ^~~~~~~~~~~~~
Result: PASS
Sketch uses 802 bytes (1%) of program storage space. Maximum is 49152 bytes. Global variables use 22 bytes (0%) of dynamic memory, leaving 6122 bytes for local variables. Maximum is 6144 bytes.
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s). In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:31:0: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::init(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:5: error: 'EICRA' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:20: error: 'ISC00' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: error: 'EIFR' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: note: suggested alternative: 'EOF' EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ EOF /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:18: error: 'INTF0' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:5: error: 'EIMSK' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: error: 'INT0' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: note: suggested alternative: 'PIN0' EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ PIN0 In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:39:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:31: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'bool EasyButton::readButtonState()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::handleINT01Interrupts()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s). In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:36:0: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::init(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:5: error: 'EICRA' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:20: error: 'ISC00' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: error: 'EIFR' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: note: suggested alternative: 'EOF' EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ EOF /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:18: error: 'INTF0' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:5: error: 'EIMSK' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: error: 'INT0' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: note: suggested alternative: 'PIN0' EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ PIN0 In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:39:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:36: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'bool EasyButton::readButtonState()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::handleINT01Interrupts()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s). In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:61:0: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::init(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:244:9: error: 'EICRA' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:244:24: error: 'ISC00' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:245:9: error: 'EIFR' was not declared in this scope EIFR |= 1 << INTF0; // clear interrupt bit ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:245:9: note: suggested alternative: 'EOF' EIFR |= 1 << INTF0; // clear interrupt bit ^~~~ EOF /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:245:22: error: 'INTF0' was not declared in this scope EIFR |= 1 << INTF0; // clear interrupt bit ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:246:9: error: 'EIMSK' was not declared in this scope EIMSK |= 1 << INT0; // enable interrupt on next change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:246:23: error: 'INT0' was not declared in this scope EIMSK |= 1 << INT0; // enable interrupt on next change ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:246:23: note: suggested alternative: 'PIN0' EIMSK |= 1 << INT0; // enable interrupt on next change ^~~~ PIN0 /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:270:9: error: 'GIMSK' was not declared in this scope GIMSK |= 1 << PCIE; // PCINT enable, we have only one ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:270:23: error: 'PCIE' was not declared in this scope GIMSK |= 1 << PCIE; // PCINT enable, we have only one ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:270:23: note: suggested alternative: 'PE' GIMSK |= 1 << PCIE; // PCINT enable, we have only one ^~~~ PE /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:271:9: error: 'PCMSK' was not declared in this scope PCMSK = digitalPinToBitMask(INT1_PIN); ^~~~~ In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:39:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:61: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'bool EasyButton::readButtonState()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:327:18: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:327:18: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:225:24: error: 'PIND' was not declared in this scope #define INT1_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:329:18: note: in expansion of macro 'INT1_IN_PORT' return !(INT1_IN_PORT & _BV(INT1_BIT)); // = digitalReadFast(3); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:225:24: note: suggested alternative: 'PIN0' #define INT1_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:329:18: note: in expansion of macro 'INT1_IN_PORT' return !(INT1_IN_PORT & _BV(INT1_BIT)); // = digitalReadFast(3); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::handleINT01Interrupts()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:480:39: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:480:39: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:225:24: error: 'PIND' was not declared in this scope #define INT1_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:482:39: note: in expansion of macro 'INT1_IN_PORT' tCurrentButtonStateIsActive = INT1_IN_PORT & _BV(INT1_BIT); // = digitalReadFast(3); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:225:24: note: suggested alternative: 'PIN0' #define INT1_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:482:39: note: in expansion of macro 'INT1_IN_PORT' tCurrentButtonStateIsActive = INT1_IN_PORT & _BV(INT1_BIT); // = digitalReadFast(3); ^~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s). In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:32:0: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::init(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:5: error: 'EICRA' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:188:20: error: 'ISC00' was not declared in this scope EICRA |= (1 << ISC00); // interrupt on any logical change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: error: 'EIFR' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:5: note: suggested alternative: 'EOF' EIFR |= 1 << INTF0;// clear interrupt bit ^~~~ EOF /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:189:18: error: 'INTF0' was not declared in this scope EIFR |= 1 << INTF0;// clear interrupt bit ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:5: error: 'EIMSK' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: error: 'INT0' was not declared in this scope EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:190:19: note: suggested alternative: 'PIN0' EIMSK |= 1 << INT0;// enable interrupt on next change ^~~~ PIN0 In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:39:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:32: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'bool EasyButton::readButtonState()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:308:14: note: in expansion of macro 'INT0_IN_PORT' return !(INT0_IN_PORT & _BV(INT0_BIT)); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp: In member function 'void EasyButton::handleINT01Interrupts()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: error: 'PIND' was not declared in this scope #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.h:215:24: note: suggested alternative: 'PIN0' #define INT0_IN_PORT (PIND) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/src/EasyButtonAtInt01.hpp:473:35: note: in expansion of macro 'INT0_IN_PORT' tCurrentButtonStateIsActive = INT0_IN_PORT & _BV(INT0_BIT); // = digitalReadFast(2); ^~~~~~~~~~~~
Result: PASS
Sketch uses 12156 bytes (4%) of program storage space. Maximum is 262144 bytes. Global variables use 2996 bytes (9%) of dynamic memory, leaving 29772 bytes for local variables. Maximum is 32768 bytes.
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:35:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress, &handleButtonRelease); // Button is connected to INT0 (pin2) ^~~~~~~~~~ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/String.h:33:0, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/IPAddress.h:24, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/ArduinoAPI.h:30, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/Arduino.h:23, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:26: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/deprecated-avr-comp/avr/pgmspace.h:34:20: note: in definition of macro 'PSTR' #define PSTR(str) (str) ^~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:80:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress(300)) { ^~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonRelease(bool, uint16_t)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:100:39: error: 'EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS' was not declared in this scope if (aButtonPressDurationMillis >= EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:107:9: error: 'Button0AtPin2' was not declared in this scope Button0AtPin2.ButtonToggleState = false; ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:38:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^~~~~~~~~~ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/String.h:33:0, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/IPAddress.h:24, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/ArduinoAPI.h:30, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/Arduino.h:23, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:27: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/deprecated-avr-comp/avr/pgmspace.h:34:20: note: in definition of macro 'PSTR' #define PSTR(str) (str) ^~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:67:31: error: 'Button0AtPin2' was not declared in this scope digitalWrite(LED_BUILTIN, Button0AtPin2.ButtonToggleState); ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:65:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress); // Only callback parameter -> button is connected to INT0 ^~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:66:1: error: 'EasyButton' does not name a type EasyButton Button1AtPin3(BUTTON_AT_INT1_OR_PCINT); // Button is connected to INT1 or PCINT[0:7] ^~~~~~~~~~ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/String.h:33:0, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/IPAddress.h:24, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/ArduinoAPI.h:30, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/Arduino.h:23, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:27: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/deprecated-avr-comp/avr/pgmspace.h:34:20: note: in definition of macro 'PSTR' #define PSTR(str) (str) ^~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:88:5: error: 'Button1AtPin3' was not declared in this scope Button1AtPin3.updateButtonState(); // this is ONLY required if we expect a regular button press which is shorter than BUTTON_DEBOUNCING_MILLIS! ^~~~~~~~~~~~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:114:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress()) { ^~~~~~~~~~~~~
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:43:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^~~~~~~~~~ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/String.h:33:0, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/IPAddress.h:24, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/ArduinoAPI.h:30, from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/Arduino.h:23, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:26: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/hardware/samd/1.8.12/cores/arduino/api/deprecated-avr-comp/avr/pgmspace.h:34:20: note: in definition of macro 'PSTR' #define PSTR(str) (str) ^~~ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:62:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.ButtonStateHasJustChanged) { ^~~~~~~~~~~~~
Result: PASS
Sketch uses 197736 bytes (15%) of program storage space. Maximum is 1310720 bytes. Global variables use 13084 bytes (3%) of dynamic memory, leaving 314596 bytes for local variables. Maximum is 327680 bytes.
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp32 architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:35:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress, &handleButtonRelease); // Button is connected to INT0 (pin2) ^ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:146:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:26: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:39:76: note: in definition of macro 'FPSTR' #define FPSTR(pstr_pointer) (reinterpret_cast<const __FlashStringHelper *>(pstr_pointer)) ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:40:34: note: in expansion of macro 'PSTR' #define F(string_literal) (FPSTR(PSTR(string_literal))) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:56:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:80:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress(300)) { ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino: In function 'void handleButtonRelease(bool, uint16_t)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:100:39: error: 'EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS' was not declared in this scope if (aButtonPressDurationMillis >= EASY_BUTTON_LONG_PRESS_DEFAULT_MILLIS) { ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/Callback/Callback.ino:107:9: error: 'Button0AtPin2' was not declared in this scope Button0AtPin2.ButtonToggleState = false; ^
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp32 architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:38:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:146:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:27: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:39:76: note: in definition of macro 'FPSTR' #define FPSTR(pstr_pointer) (reinterpret_cast<const __FlashStringHelper *>(pstr_pointer)) ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:40:34: note: in expansion of macro 'PSTR' #define F(string_literal) (FPSTR(PSTR(string_literal))) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:60:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/DebounceTest/DebounceTest.ino:67:31: error: 'Button0AtPin2' was not declared in this scope digitalWrite(LED_BUILTIN, Button0AtPin2.ButtonToggleState); ^
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp32 architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:65:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2(&handleButtonPress); // Only callback parameter -> button is connected to INT0 ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:66:1: error: 'EasyButton' does not name a type EasyButton Button1AtPin3(BUTTON_AT_INT1_OR_PCINT); // Button is connected to INT1 or PCINT[0:7] ^ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:146:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:27: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:39:76: note: in definition of macro 'FPSTR' #define FPSTR(pstr_pointer) (reinterpret_cast<const __FlashStringHelper *>(pstr_pointer)) ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:40:34: note: in expansion of macro 'PSTR' #define F(string_literal) (FPSTR(PSTR(string_literal))) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:79:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:88:5: error: 'Button1AtPin3' was not declared in this scope Button1AtPin3.updateButtonState(); // this is ONLY required if we expect a regular button press which is shorter than BUTTON_DEBOUNCING_MILLIS! ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino: In function 'void handleButtonPress(bool)': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/EasyButtonExample/EasyButtonExample.ino:114:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.checkForDoublePress()) { ^
Result: FAIL
WARNING: library EasyButtonAtInt01 claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp32 architecture(s). /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:43:1: error: 'EasyButton' does not name a type EasyButton Button0AtPin2; // Only 1. button (USE_BUTTON_0) enabled -> button is connected to INT0 ^ In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:146:0, from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:26: /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void setup()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:69: error: expected ')' before 'VERSION_EASY_BUTTON' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:39:76: note: in definition of macro 'FPSTR' #define FPSTR(pstr_pointer) (reinterpret_cast<const __FlashStringHelper *>(pstr_pointer)) ^ /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/WString.h:40:34: note: in expansion of macro 'PSTR' #define F(string_literal) (FPSTR(PSTR(string_literal))) ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:20: note: in expansion of macro 'F' Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token Serial.println(F("START " __FILE__ "\r\nUsing library version " VERSION_EASY_BUTTON " from " __DATE__)); ^ /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:53:108: error: expected ')' before ';' token /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino: In function 'void loop()': /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/EasyButtonAtInt01/examples/OneButton/OneButton.ino:62:9: error: 'Button0AtPin2' was not declared in this scope if (Button0AtPin2.ButtonStateHasJustChanged) { ^