Nextion User Manual
For Arduino developers
NexWaveform.h
Go to the documentation of this file.
1 
16 #ifndef __NEXWAVEFORM_H__
17 #define __NEXWAVEFORM_H__
18 
19 #include "NexTouch.h"
20 #include "NexHardware.h"
29 class NexWaveform: public NexObject
30 {
31 public: /* methods */
35  NexWaveform(uint8_t pid, uint8_t cid, const char *name);
36 
46  bool addValue(uint8_t ch, uint8_t number);
47 };
48 
53 #endif /* #ifndef __NEXWAVEFORM_H__ */
bool addValue(uint8_t ch, uint8_t number)
Add value to show.
Definition: NexWaveform.cpp:22
The definition of class NexTouch.
The definition of base API for using Nextion.
NexWaveform(uint8_t pid, uint8_t cid, const char *name)
Constructor.
Definition: NexWaveform.cpp:17
Root class of all Nextion components.
Definition: NexObject.h:32
NexWaveform component.
Definition: NexWaveform.h:29