code pour recevoir des trames et mettre les char sur le port usb
Dependencies: mbed
Fork of APP4 by
coordinateur.hpp
- Committer:
- joGenie
- Date:
- 2014-02-24
- Revision:
- 2:7515831bb5f5
- Parent:
- 0:71df0feee697
- Child:
- 3:350f07072089
File content as of revision 2:7515831bb5f5:
#ifndef COORDINATEUR_HPP #define COORDINATEUR_HPP #include <string> #include "trame.hpp" using namespace std; class Coordinateur { public: // Constructeur Coordinateur(PinName _tx, PinName _rx); private: Trame trame; string pan; }; #endif