Webcalc-ESP8266/at_basic.h

11 lines
239 B
C
Raw Permalink Normal View History

2020-07-05 09:38:53 +02:00
#ifndef _AT_BASIC_H
#define _AT_BASIC_H
void at(); // Echo OK
void at_rst(); // Reset the module
void at_gmr(); // Print software version
void at_gslp(uint32_t t); // Sleeps x milliseconds
void ate(bool e); // Enable/disable echo
#endif