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:
- 3:350f07072089
- Parent:
- 2:7515831bb5f5
- Child:
- 4:56b1ca37a175
File content as of revision 3:350f07072089:
#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