NeoNextion
Arduino library for the Nextion displays.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator
NextionVariableString.h
Go to the documentation of this file.
1 
3 #ifndef __NEONEXTION_NEXTIONVARIABLESTRING
4 #define __NEONEXTION_NEXTIONVARIABLESTRING
5 
6 #include "Nextion.h"
7 #include "INextionWidget.h"
8 #include "INextionStringValued.h"
9 
15 {
16 public:
20  NextionVariableString(Nextion &nex, uint8_t page, uint8_t component,
21  const char *name)
22  : INextionWidget(nex, page, component, name)
23  , INextionStringValued(nex, page, component, name)
24  {
25  }
26 };
27 
28 #endif
NextionVariableString(Nextion &nex, uint8_t page, uint8_t component, const char *name)
Create a new widget adapter.
Definition: NextionVariableString.h:20
Represents a string variable.
Definition: NextionVariableString.h:14
Interface for widgets that hold a string value.
Definition: INextionStringValued.h:16
Abstract class for all UI widgets.
Definition: INextionWidget.h:15
Driver for a physical Nextion device.
Definition: Nextion.h:31