Skip to content

Commit

Permalink
added default construction
Browse files Browse the repository at this point in the history
  • Loading branch information
forntoh committed Jun 9, 2020
1 parent 4ee52e6 commit 812d07e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/MenuOne/MenuOne.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <Key.h>
#include <Keypad.h>

#include "LcdMenu.h"
#include <LcdMenu.h>

#define LCD_ADDR 0x27

Expand Down
4 changes: 4 additions & 0 deletions src/MenuItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ class MenuItem {
String value = "";
};

MenuItem::MenuItem() {

}

class ItemHeader : public MenuItem {
public:
ItemHeader() : MenuItem(this, MENU_ITEM_MAIN_MENU_HEADER) {}
Expand Down

0 comments on commit 812d07e

Please sign in to comment.