mbed base bard check program for BlueTooth USB dongle module (3 switches, 6 leds, I2C LCD, A/D)
Fork of BTstack by
usbbt/bd_addr.h
- Committer:
- tamaki
- Date:
- 2016-10-17
- Revision:
- 3:7b7d1273e2d5
- Parent:
- 0:1ed23ab1345f
File content as of revision 3:7b7d1273e2d5:
#ifndef BD_ADDR_H #define BD_ADDR_H class bd_addr { public: bd_addr(); bd_addr(char* s); uint8_t* data(uint8_t* addr = NULL); char* to_str(); private: char ad_str[18]; uint8_t ad[6]; }; #endif //BD_ADDR_H