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