gyo

SBDBT.h

Committer:
gotto0
Date:
2017-05-06
Revision:
1:8810976be033
Parent:
0:afe58893bfe7
Child:
2:1472e7c5317d

File content as of revision 1:8810976be033:

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

namespace raven
{
    
    class SBDBT
    {
        private:
        char i;
        char length;
        char value;
        char position;
        
        public:
        char *data;
        char *olddata;
        char flag;
        Serial *sr;
        
        SBDBT(PinName, PinName);
        SBDBT(PinName, PinName, int);
        void getf();
        ~SBDBT();
    };
    
}//namespace
#endif