ver1
Dependents: EM_ver1 template FM_ver3_for_ARLISS FM_ver3_for_test
MU2.h
- Committer:
- Nerosho
- Date:
- 2019-07-16
- Revision:
- 0:48505968b10e
- Child:
- 1:dcb1eee964d5
File content as of revision 0:48505968b10e:
#ifndef MU2_CLASS #define MU2_CLASS #include "mbed.h" class MU2 { private: PinName _tx; //tx pin name which connected to mbed PinName _rx; //rx pin name which connected to mbed public: MU2(PinName tx,PinName rx); //コンストラクタの宣言define pins for communication from CanSat void send(char Message[]); //a method for sending data from CanSat to PC //void send(int Send_Message[]); //overload the send(char)method }; #endif