Skip to content

Commit fe316c4

Browse files
committed
u8g2 example, remove name collision on esp32
#250
1 parent 432d84a commit fe316c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/U8G2/U8G2/U8G2.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ uint16_t mins=0;
143143

144144
//define a pad style menu (single line menu)
145145
//here with a set of fields to enter a date in YYYY/MM/DD format
146-
altMENU(menu,time,"Time",doNothing,noEvent,noStyle,(systemStyles)(_asPad|Menu::_menuData|Menu::_canNav|_parentDraw)
146+
altMENU(menu,timeMenu,"Time",doNothing,noEvent,noStyle,(systemStyles)(_asPad|Menu::_menuData|Menu::_canNav|_parentDraw)
147147
,FIELD(hrs,"",":",0,11,1,0,doNothing,noEvent,noStyle)
148148
,FIELD(mins,"","",0,59,10,1,doNothing,noEvent,wrapStyle)
149149
);
@@ -156,7 +156,7 @@ MENU(mainMenu,"Main menu",doNothing,noEvent,wrapStyle
156156
,OP("Op1",doNothing,noEvent)
157157
,OP("Op2",doNothing,noEvent)
158158
//,FIELD(test,"Test","%",0,100,10,1,doNothing,noEvent,wrapStyle)
159-
,SUBMENU(time)
159+
,SUBMENU(timeMenu)
160160
,SUBMENU(subMenu)
161161
,SUBMENU(setLed)
162162
,OP("LED On",myLedOn,enterEvent)

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.17.25
2+
version=4.17.26
33
author=Rui Azevedo, [email protected]
44
maintainer=neu-rah, [email protected]
55
sentence=Generic menu/interactivity system

0 commit comments

Comments
 (0)