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:
- 4:56b1ca37a175
- Parent:
- 3:350f07072089
- Child:
- 5:daf08fff7abb
File content as of revision 4:56b1ca37a175:
#ifndef COORDINATEUR_HPP #define COORDINATEUR_HPP #include <string> #include "trame.hpp" using namespace std; class Coordinateur { public: // Constructeur Coordinateur(PinName _tx, PinName _rx); void setPanID(string _pan) { pan = _pan; } private: Trame trame; string pan; }; #endif