TouchKeypad - compatibility matrix

This report was generated on Wednesday, 23-Feb-22 22:48:15 CET using arduino-testlib.

TouchKeypad

Version: 0.0.3
More details

Compatibility matrix

Board Claims compatibility Inclusion
BasicTouchKeypad
ClassMethodLambdaCallback
arduino:avr:uno
1.8.4
Yes PASS FAIL FAIL
arduino:mbed_nano:nanorp2040connect
2.7.2
Yes PASS FAIL FAIL
arduino:megaavr:nona4809
1.8.7
Yes PASS FAIL FAIL
arduino:samd:mkrwifi1010
1.8.12
Yes PASS FAIL FAIL
esp32:esp32:d1_mini32
1.0.6
Yes PASS FAIL FAIL

Compilation logs

arduino:avr:uno @ 1.8.4

Inclusion

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.

examples/BasicTouchKeypad

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~

examples/ClassMethodLambdaCallback

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: In function 'void setup()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:125:88: error: no matching function for call to 'TouchKey::setTouchedHandler(setup()::<lambda(TouchKey&)>)'
       tkp.key(row, col).setTouchedHandler([&](TouchKey &key) { foo.onKeyTouched(key); });
                                                                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note: candidate: void TouchKey::setTouchedHandler(TouchKey::TouchKeyFunction)
     void setTouchedHandler(TouchKeyFunction f) {
          ^~~~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note:   no known conversion for argument 1 from 'setup()::<lambda(TouchKey&)>' to 'TouchKey::TouchKeyFunction {aka void (*)(TouchKey&)}'

arduino:mbed_nano:nanorp2040connect @ 2.7.2

Inclusion

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.

examples/BasicTouchKeypad

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'bool DisplayNumber::draw(uint16_t, uint16_t, float, uint16_t, uint16_t, bool)':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: error: 'dtostrf' was not declared in this scope
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: note: suggested alternative: 'strstr'
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
     strstr
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~

examples/ClassMethodLambdaCallback

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'bool DisplayNumber::draw(uint16_t, uint16_t, float, uint16_t, uint16_t, bool)':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: error: 'dtostrf' was not declared in this scope
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: note: suggested alternative: 'strstr'
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
     strstr
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: In function 'void setup()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:125:88: error: no matching function for call to 'TouchKey::setTouchedHandler(setup()::<lambda(TouchKey&)>)'
       tkp.key(row, col).setTouchedHandler([&](TouchKey &key) { foo.onKeyTouched(key); });
                                                                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note: candidate: void TouchKey::setTouchedHandler(TouchKey::TouchKeyFunction)
     void setTouchedHandler(TouchKeyFunction f) {
          ^~~~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note:   no known conversion for argument 1 from 'setup()::<lambda(TouchKey&)>' to 'TouchKey::TouchKeyFunction {aka void (*)(TouchKey&)}'

arduino:megaavr:nona4809 @ 1.8.7

Inclusion

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.

examples/BasicTouchKeypad

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~

examples/ClassMethodLambdaCallback

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: note: suggested alternative: 'A7'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: note: suggested alternative: 'A7'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: In function 'void setup()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:125:88: error: no matching function for call to 'TouchKey::setTouchedHandler(setup()::<lambda(TouchKey&)>)'
       tkp.key(row, col).setTouchedHandler([&](TouchKey &key) { foo.onKeyTouched(key); });
                                                                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note: candidate: void TouchKey::setTouchedHandler(TouchKey::TouchKeyFunction)
     void setTouchedHandler(TouchKeyFunction f) {
          ^~~~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note:   no known conversion for argument 1 from 'setup()::<lambda(TouchKey&)>' to 'TouchKey::TouchKeyFunction {aka void (*)(TouchKey&)}'

arduino:samd:mkrwifi1010 @ 1.8.12

Inclusion

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.

examples/BasicTouchKeypad

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'bool DisplayNumber::draw(uint16_t, uint16_t, float, uint16_t, uint16_t, bool)':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: error: 'dtostrf' was not declared in this scope
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: note: suggested alternative: 'strstr'
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
     strstr
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:64:12: error: 'A7' was not declared in this scope
 #define XP A7   // Y- can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:30: note: in expansion of macro 'XP'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                              ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:64:12: note: suggested alternative: 'A6'
 #define XP A7   // Y- can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:30: note: in expansion of macro 'XP'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                              ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:62:12: note: suggested alternative: 'A6'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:63:12: note: suggested alternative: 'A6'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~

examples/ClassMethodLambdaCallback

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'bool DisplayNumber::draw(uint16_t, uint16_t, float, uint16_t, uint16_t, bool)':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: error: 'dtostrf' was not declared in this scope
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:413:5: note: suggested alternative: 'strstr'
     dtostrf(num, (numDigits + 2), precision, newBuffer);
     ^~~~~~~
     strstr
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:64:12: error: 'A7' was not declared in this scope
 #define XP A7   // Y- can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:30: note: in expansion of macro 'XP'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                              ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:64:12: note: suggested alternative: 'A6'
 #define XP A7   // Y- can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:30: note: in expansion of macro 'XP'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                              ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: error: 'A9' was not declared in this scope
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:62:12: note: suggested alternative: 'A6'
 #define XM A9  // Y+ must be an analog pin, use "An" notation!
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:38: note: in expansion of macro 'XM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                      ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: error: 'A8' was not declared in this scope
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:63:12: note: suggested alternative: 'A6'
 #define YM A8   // X+ can be a digital pin
            ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:69:42: note: in expansion of macro 'YM'
 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
                                          ^~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino: In function 'void setup()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:125:88: error: no matching function for call to 'TouchKey::setTouchedHandler(setup()::<lambda(TouchKey&)>)'
       tkp.key(row, col).setTouchedHandler([&](TouchKey &key) { foo.onKeyTouched(key); });
                                                                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note: candidate: void TouchKey::setTouchedHandler(TouchKey::TouchKeyFunction)
     void setTouchedHandler(TouchKeyFunction f) {
          ^~~~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:145:10: note:   no known conversion for argument 1 from 'setup()::<lambda(TouchKey&)>' to 'TouchKey::TouchKeyFunction {aka void (*)(TouchKey&)}'

esp32:esp32:d1_mini32 @ 1.0.6

Inclusion

Result: PASS

Sketch uses 198080 bytes (15%) of program storage space. Maximum is 1310720 bytes.
Global variables use 13112 bytes (4%) of dynamic memory, leaving 314568 bytes for local variables. Maximum is 327680 bytes.

examples/BasicTouchKeypad

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'void DisplayNumber::setMaxTextBounds()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: error: no matching function for call to 'max(uint8_t&, int)'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note: candidate: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare)
     max(initializer_list<_Tp> __l, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note: candidate: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>)
     max(initializer_list<_Tp> __l)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:61:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:265:5: note: candidate: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:265:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned char' and 'int')
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:61:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:219:5: note: candidate: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
     max(const _Tp& __a, const _Tp& __b)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:219:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned char' and 'int')
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: error: no matching function for call to 'max(uint8_t&, uint16_t&)'
       digitHeight = max(digitHeight, h1);
                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note: candidate: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare)
     max(initializer_list<_Tp> __l, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitHeight = max(digitHeight, h1);
                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-C48ECC7B78B8D16FC6FA53E798877724/sketch/BasicTouchKeypad.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note: candidate: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>)
     max(initializer_list<_Tp> __l)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/BasicTouchKeypad/BasicTouchKeypad.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitHeight = max(digitHeight, h1);
                                        ^
In file included from /home/ec2-user/ardui

examples/ClassMethodLambdaCallback

Result: FAIL

In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h: In member function 'void DisplayNumber::setMaxTextBounds()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: error: no matching function for call to 'max(uint8_t&, int)'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note: candidate: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare)
     max(initializer_list<_Tp> __l, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note: candidate: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>)
     max(initializer_list<_Tp> __l)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:61:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:265:5: note: candidate: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:265:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned char' and 'int')
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:61:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:219:5: note: candidate: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
     max(const _Tp& __a, const _Tp& __b)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algobase.h:219:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:262:43: note:   deduced conflicting types for parameter 'const _Tp' ('unsigned char' and 'int')
       digitWidth = max(digitWidth, w1 + x1);
                                           ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: error: no matching function for call to 'max(uint8_t&, uint16_t&)'
       digitHeight = max(digitHeight, h1);
                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note: candidate: template<class _Tp, class _Compare> _Tp std::max(std::initializer_list<_Tp>, _Compare)
     max(initializer_list<_Tp> __l, _Compare __comp)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3463:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: note:   mismatched types 'std::initializer_list<_Tp>' and 'unsigned char'
       digitHeight = max(digitHeight, h1);
                                        ^
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/algorithm:62:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/hardware/esp32/1.0.6/cores/esp32/Arduino.h:142,
                 from /tmp/arduino-sketch-925F6DA45BC25F8DE48491C9C1EAB589/sketch/ClassMethodLambdaCallback.ino.cpp:1:
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note: candidate: template<class _Tp> _Tp std::max(std::initializer_list<_Tp>)
     max(initializer_list<_Tp> __l)
     ^
/home/ec2-user/arduino-testlib/cli-datadir/data/packages/esp32/tools/xtensa-esp32-elf-gcc/1.22.0-97-gc752ad5-5.2.0/xtensa-esp32-elf/include/c++/5.2.0/bits/stl_algo.h:3457:5: note:   template argument deduction/substitution failed:
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/src/TouchKeypad.h:33:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/TouchKeypad/examples/ClassMethodLambdaCallback/ClassMethodLambdaCallback.ino:42:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/DisplayUtils/src/DisplayUtils.h:263:40: note:   mismatched ty