Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
NexHardware.h
1 
15 #ifndef __NEXHARDWARE_H__
16 #define __NEXHARDWARE_H__
17 #include <Arduino.h>
18 #include "NexConfig.h"
19 #include "NexTouch.h"
20 
31 bool nexInit(void);
32 
44 void nexLoop(NexTouch *nex_listen_list[]);
45 
50 bool recvRetNumber(uint32_t *number, uint32_t timeout = 100);
51 uint16_t recvRetString(char *buffer, uint16_t len, uint32_t timeout = 100);
52 void sendCommand(const char* cmd);
53 bool recvRetCommandFinished(uint32_t timeout = 100);
54 
55 #endif /* #ifndef __NEXHARDWARE_H__ */
Definition: NexTouch.h:53
bool nexInit(void)
void nexLoop(NexTouch *nex_listen_list[])