Eirbot1A-2020
Protocole.hpp
1 #ifndef __PROTOCOLE_H_
2 #define __PROTOCOLE_H_
3 
4 #include "mbed.h"
5 
6 class Protocole
7 {
8  public:
9  Protocole();
10  ~Protocole();
11 
12  short x, y, angle;
13  char GP2_on;
14  char GP2_etats[3];
15 
16  void poll();
17 
18  private:
19  char readBuffer[32];
20  int buf_index = 0;
21  RawSerial *_serial;
22  void parse();
23 };
24 
25 
26 #endif // __PROTOCOLE_H_
Protocole
Contient toutes les méthodes permettant d'utiliser le protocole côté nucléo.
Definition: Protocole_nucleo.hpp:26