うおーるぼっとをWiiリモコンでコントロールする新しいプログラムです。 以前のものより、Wiiリモコンが早く繋がる様になりました。 It is a program which controls A with the Wii remote. ※ A Bluetooth dongle and a Wii remote control are needed.

Dependencies:   USBHost mbed FATFileSystem mbed-rtos

usbbt/bd_addr.h

Committer:
jksoft
Date:
2013-06-10
Revision:
0:fccb789424fc

File content as of revision 0:fccb789424fc:

#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