Update SIM7000.h

This commit is contained in:
zhujisheng 2019-07-09 20:11:30 +08:00
parent a899f6c7cb
commit d88cc407dd
1 changed files with 1 additions and 1 deletions

View File

@ -10,9 +10,9 @@ class SIM7000
{
public:
bool begin(Stream &port);
bool check_send_cmd(const char* cmd, const char* resp, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT);
void sendCmd(const char* cmd);
int readBuffer(char *buffer, int count, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT);
bool check_send_cmd(const char* cmd, const char* resp, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT);
private:
SoftwareSerial* mySerial;
};