Webcalc-ESP8266/at_basic.h

11 lines
239 B
C

#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