gyo

SBDBT.h

Committer:
gotto0
Date:
2017-05-06
Revision:
4:3f384ebf4509
Parent:
2:1472e7c5317d
Child:
5:a4a994824c96

File content as of revision 4:3f384ebf4509:

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

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