Skip to content

Commit 4935105

Browse files
committed
use parent constructor of fieldFormat example
1 parent 1137891 commit 4935105

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/fieldFormat/fieldFormat/fieldFormat.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int test=55;
1515
template<typename T>
1616
class leadsField:public menuField<T> {
1717
public:
18-
leadsField(const menuFieldShadow<T>& shadow):menuField<T>(shadow) {}
18+
using menuField<T>::menuField;
1919
Used printTo(navRoot &root,bool sel,menuOut& out, idx_t idx,idx_t len) {
2020
menuField<T>::reflex=menuField<T>::target();
2121
prompt::printTo(root,sel,out,idx,len);

examples/handlers/platformio.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ src_dir=handlers
3737
;
3838
[env:nanoatmega328]
3939
platform = atmelavr
40-
board = nanoatmega328new
40+
board = nanoatmega328
41+
; board = nanoatmega328new
4142
framework = arduino
4243
upload_port=/dev/ttyUSB*
4344
upload_flags=-V

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoMenu library
2-
version=4.21.3
2+
version=4.21.4
33
author=Rui Azevedo, [email protected]
44
maintainer=neu-rah, [email protected]
55
sentence=Generic menu/interactivity system

0 commit comments

Comments
 (0)