Communicate to bluetooth devices or wifi per at-commands

Dependents:   Nucleo_bt

at.h

Committer:
rainerraul
Date:
2018-08-13
Revision:
0:413f3c13a00a
Child:
1:ce7fb335aa1b

File content as of revision 0:413f3c13a00a:

#ifndef AT_H
#define AT_H

class  atterm
{
public:
    char buffer[128];
    void device_init(unsigned long baud);
    void device_init1(unsigned long baud);
    void clear();
    void at_send(char *format, char *buf);
    void at_send1(char *format, char *buf);
    void debug_off(bool l);
    bool off;
    int a;
    char sign;    
} extern at0, at1;

#endif