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