Skip to content

Commit

Permalink
u8g2 example, remove name collision on esp32
Browse files Browse the repository at this point in the history
  • Loading branch information
neu-rah committed Jul 19, 2019
1 parent 432d84a commit fe316c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/U8G2/U8G2/U8G2.ino
Expand Up @@ -143,7 +143,7 @@ uint16_t mins=0;

//define a pad style menu (single line menu)
//here with a set of fields to enter a date in YYYY/MM/DD format
altMENU(menu,time,"Time",doNothing,noEvent,noStyle,(systemStyles)(_asPad|Menu::_menuData|Menu::_canNav|_parentDraw)
altMENU(menu,timeMenu,"Time",doNothing,noEvent,noStyle,(systemStyles)(_asPad|Menu::_menuData|Menu::_canNav|_parentDraw)
,FIELD(hrs,"",":",0,11,1,0,doNothing,noEvent,noStyle)
,FIELD(mins,"","",0,59,10,1,doNothing,noEvent,wrapStyle)
);
Expand All @@ -156,7 +156,7 @@ MENU(mainMenu,"Main menu",doNothing,noEvent,wrapStyle
,OP("Op1",doNothing,noEvent)
,OP("Op2",doNothing,noEvent)
//,FIELD(test,"Test","%",0,100,10,1,doNothing,noEvent,wrapStyle)
,SUBMENU(time)
,SUBMENU(timeMenu)
,SUBMENU(subMenu)
,SUBMENU(setLed)
,OP("LED On",myLedOn,enterEvent)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
@@ -1,5 +1,5 @@
name=ArduinoMenu library
version=4.17.25
version=4.17.26
author=Rui Azevedo, ruihfazevedo@gmail.com
maintainer=neu-rah, ruihfazevedo@gmail.com
sentence=Generic menu/interactivity system
Expand Down

0 comments on commit fe316c4

Please sign in to comment.