NeoNextion
Arduino library for the Nextion displays.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator
NextionPage.h
Go to the documentation of this file.
1 
3 #ifndef __NEONEXTION_NEXTIONPAGE
4 #define __NEONEXTION_NEXTIONPAGE
5 
6 #include "Nextion.h"
7 #include "INextionWidget.h"
8 
14 {
15 public:
16  NextionPage(Nextion &nex, uint8_t page, uint8_t component, const char *name);
17 
18  bool show();
19  bool isShown();
20 };
21 
22 #endif
bool show()
Sets this page as the currently displayed page.
Definition: NextionPage.cpp:18
Abstract class for all UI widgets.
Definition: INextionWidget.h:15
NextionPage(Nextion &nex, uint8_t page, uint8_t component, const char *name)
Create a new widget adapter.
Definition: NextionPage.cpp:8
bool isShown()
Determines if this page is currently displayed.
Definition: NextionPage.cpp:30
Represents a page of widgets.
Definition: NextionPage.h:13
Driver for a physical Nextion device.
Definition: Nextion.h:31