Files
ITEADLIB_Arduino_Nextion/NexHardware.h
shennongmin 98850de2cf Update doc of file comments.
Signed-off-by: shennongmin <wupangfee@gmail.com>
2015-08-14 11:55:47 +08:00

30 lines
943 B
C

/**
* @file NexHardware.h
*
* The definition of base API for using Nextion.
*
* @author Wu Pengfei (email:<pengfei.wu@itead.cc>)
* @date 2015/8/11
* @copyright
* Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#ifndef __NEXHARDWARE_H__
#define __NEXHARDWARE_H__
#include <Arduino.h>
#include "NexConfig.h"
#include "NexTouch.h"
bool recvRetNumber(uint32_t *number, uint32_t timeout = 100);
uint16_t recvRetString(char *buffer, uint16_t len, uint32_t timeout = 100);
void sendCommand(const char* cmd);
bool recvRetCommandFinished(uint32_t timeout = 100);
bool nexInit(void);
void nexLoop(NexTouch **nex_listen_list);
#endif /* #ifndef __NEXHARDWARE_H__ */