gyo

SBDBT.h

Committer:
gotto0
Date:
2017-05-06
Revision:
0:afe58893bfe7
Child:
1:8810976be033

File content as of revision 0:afe58893bfe7:

#ifndef INCLUDED_SBDBT_h_
#define INCLUDED_SBDBT_h_
#include "mbed.h"

namespace raven
{
    
    class SBDBT
    {
        private:
        char i;
        
        public:
        char data[8];
        char olddata[8];
        char flag;
        Serial *sr;
        
        SBDBT(PinName, PinName);
        char check();
        void getd();
        ~SBDBT();
    };
    
    
}//namespace
#endif