Library to use Arduino USB host shield on mbed

Dependents:   USBHOST_PS5

ArduinoのUSB Host Shield 2.0をmbedで使えるようにしたライブラリです。
大体のコードがArduinoからそのまま移植可能です。

Arduino UNOやMega用のホストシールド以外にもミニサイズのホストシールドでも使用可能です https://os.mbed.com/media/uploads/kotakku/dffgfddswa.png

シールドについて

3.3VのI/O用にシールドの改造が必要になりますがネット上に記事がたくさんあるのでそちらを参考にしてください

接続例

https://os.mbed.com/media/uploads/kotakku/esgsvfvhjrekldkcjxvb.png

使い方

Arduinoのコードと違うのはUSBのインスタンスの宣言部分のみです。
ピンを自分で指定できるようにしたので使いやすくなりました。

仕様

  • Arduinoのmillis関数、micros関数の移植のために内部でTimerクラスを使用しています。

main.cpp

#include "mbed.h"
#include <PS3BT.h>
#include <usbhub.h>

Serial pc(USBTX, USBRX, 115200);

//Nucleo f303k8用
USB Usb(A6, A5, A4, A3, A2); // mosi, miso, sclk, ssel, intr
BTD Btd(&Usb);
PS3BT PS3(&Btd);

int main()
{
    bool printAngle = false;

    if (Usb.Init() == -1)
    {
        pc.printf("\r\nOSC did not start");
        while (1); // Halt
    }
    pc.printf("\r\nPS3 USB Library Started");

    while (1)
    {
        Usb.Task();
        
        if (PS3.PS3Connected || PS3.PS3NavigationConnected) {
            if (PS3.getAnalogHat(LeftHatX) > 137 || PS3.getAnalogHat(LeftHatX) < 117 || PS3.getAnalogHat(LeftHatY) > 137 || PS3.getAnalogHat(LeftHatY) < 117 || PS3.getAnalogHat(RightHatX) > 137 || PS3.getAnalogHat(RightHatX) < 117 || PS3.getAnalogHat(RightHatY) > 137 || PS3.getAnalogHat(RightHatY) < 117)
            {
                pc.printf("\r\nLeftHatX: %d", PS3.getAnalogHat(LeftHatX));
                pc.printf("\tLeftHatY: %d", PS3.getAnalogHat(LeftHatY));
                if (PS3.PS3Connected)
                { // The Navigation controller only have one joystick
                    pc.printf("\tRightHatX: %d", PS3.getAnalogHat(RightHatX));
                    pc.printf("\tRightHatY: %d", PS3.getAnalogHat(RightHatY));
                }
            }
            // Analog button values can be read from almost all buttons
            if (PS3.getAnalogButton(L2) || PS3.getAnalogButton(R2))
            {
                pc.printf("\r\nL2: %d", PS3.getAnalogButton(L2));
                if (!PS3.PS3NavigationConnected)
                {
                    pc.printf("\tR2: %d", PS3.getAnalogButton(R2));
                }
            }
            if (PS3.getButtonClick(PS))
            {
                PS3.disconnect();
                pc.printf("\r\nPS");
            }
    
            if (PS3.getButtonClick(TRIANGLE))
                pc.printf("\r\nTriangle");
            if (PS3.getButtonClick(CIRCLE))
                pc.printf("\r\nCircle");
            if (PS3.getButtonClick(CROSS))
                pc.printf("\r\nCross");
            if (PS3.getButtonClick(SQUARE))
                pc.printf("\r\nSquare");
    
            if (PS3.getButtonClick(UP))
            {
                pc.printf("\r\nUp");
                PS3.setLedOff();
                PS3.setLedOn(CONTROLLER_LED4);
            }
            if (PS3.getButtonClick(RIGHT))
            {
                pc.printf("\r\nRight");
                PS3.setLedOff();
                PS3.setLedOn(CONTROLLER_LED1);
            }
            if (PS3.getButtonClick(DOWN))
            {
                pc.printf("\r\nDown");
                PS3.setLedOff();
                PS3.setLedOn(CONTROLLER_LED2);
            }
            if (PS3.getButtonClick(LEFT))
            {
                pc.printf("\r\nLeft");
                PS3.setLedOff();
                PS3.setLedOn(CONTROLLER_LED3);
            }
    
            if (PS3.getButtonClick(L1))
                pc.printf("\r\nL1");
            if (PS3.getButtonClick(L3))
                pc.printf("\r\nL3");
            if (PS3.getButtonClick(R1))
                pc.printf("\r\nR1");
            if (PS3.getButtonClick(R3))
                pc.printf("\r\nR3");
    
            if (PS3.getButtonClick(SELECT))
            {
                pc.printf("\r\nSelect - ");
                PS3.printStatusString();
            }
            if (PS3.getButtonClick(START))
            {
                pc.printf("\r\nStart");
                printAngle = !printAngle;
            }
            if (printAngle)
            {
                pc.printf("\r\nPitch: %.3lf", PS3.getAngle(Pitch));
                pc.printf("\tRoll: %.3lf", PS3.getAngle(Roll));
            }
        }
        else
        {
            pc.printf("not connect\n");
        }
    }
}
Committer:
robo_ichinoseki_a
Date:
Sat May 02 05:56:48 2020 +0000
Revision:
1:da31140f2a1c
Parent:
0:b1ce54272580
update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kotakku 0:b1ce54272580 1 /* Copyright (C) 2013 Kristian Lauszus, TKJ Electronics. All rights reserved.
kotakku 0:b1ce54272580 2
kotakku 0:b1ce54272580 3 This software may be distributed and modified under the terms of the GNU
kotakku 0:b1ce54272580 4 General Public License version 2 (GPL2) as published by the Free Software
kotakku 0:b1ce54272580 5 Foundation and appearing in the file GPL2.TXT included in the packaging of
kotakku 0:b1ce54272580 6 this file. Please note that GPL2 Section 2[b] requires that all works based
kotakku 0:b1ce54272580 7 on this software must also be made publicly available under the terms of
kotakku 0:b1ce54272580 8 the GPL2 ("Copyleft").
kotakku 0:b1ce54272580 9
kotakku 0:b1ce54272580 10 Contact information
kotakku 0:b1ce54272580 11 -------------------
kotakku 0:b1ce54272580 12
kotakku 0:b1ce54272580 13 Kristian Lauszus, TKJ Electronics
kotakku 0:b1ce54272580 14 Web : http://www.tkjelectronics.com
kotakku 0:b1ce54272580 15 e-mail : kristianl@tkjelectronics.com
kotakku 0:b1ce54272580 16 */
kotakku 0:b1ce54272580 17
kotakku 0:b1ce54272580 18 #ifndef _bthid_h_
kotakku 0:b1ce54272580 19 #define _bthid_h_
kotakku 0:b1ce54272580 20
kotakku 0:b1ce54272580 21 #include "BTD.h"
kotakku 0:b1ce54272580 22 #include "hidboot.h"
kotakku 0:b1ce54272580 23
kotakku 0:b1ce54272580 24 #define KEYBOARD_PARSER_ID 0
kotakku 0:b1ce54272580 25 #define MOUSE_PARSER_ID 1
kotakku 0:b1ce54272580 26 #define NUM_PARSERS 2
kotakku 0:b1ce54272580 27
kotakku 0:b1ce54272580 28 /** This BluetoothService class implements support for Bluetooth HID devices. */
kotakku 0:b1ce54272580 29 class BTHID : public BluetoothService {
kotakku 0:b1ce54272580 30 public:
kotakku 0:b1ce54272580 31 /**
kotakku 0:b1ce54272580 32 * Constructor for the BTHID class.
kotakku 0:b1ce54272580 33 * @param p Pointer to the BTD class instance.
kotakku 0:b1ce54272580 34 * @param pair Set this to true in order to pair with the device. If the argument is omitted then it will not pair with it. One can use ::PAIR to set it to true.
kotakku 0:b1ce54272580 35 * @param pin Write the pin to BTD#btdPin. If argument is omitted, then "0000" will be used.
kotakku 0:b1ce54272580 36 */
kotakku 0:b1ce54272580 37 BTHID(BTD *p, bool pair = false, const char *pin = "0000");
kotakku 0:b1ce54272580 38
kotakku 0:b1ce54272580 39 /** @name BluetoothService implementation */
kotakku 0:b1ce54272580 40 /** Used this to disconnect the devices. */
kotakku 0:b1ce54272580 41 void disconnect();
kotakku 0:b1ce54272580 42 /**@}*/
kotakku 0:b1ce54272580 43
kotakku 0:b1ce54272580 44 /**
kotakku 0:b1ce54272580 45 * Get HIDReportParser.
kotakku 0:b1ce54272580 46 * @param id ID of parser.
kotakku 0:b1ce54272580 47 * @return Returns the corresponding HIDReportParser. Returns NULL if id is not valid.
kotakku 0:b1ce54272580 48 */
kotakku 0:b1ce54272580 49 HIDReportParser *GetReportParser(uint8_t id) {
kotakku 0:b1ce54272580 50 if (id >= NUM_PARSERS)
kotakku 0:b1ce54272580 51 return NULL;
kotakku 0:b1ce54272580 52 return pRptParser[id];
kotakku 0:b1ce54272580 53 };
kotakku 0:b1ce54272580 54
kotakku 0:b1ce54272580 55 /**
kotakku 0:b1ce54272580 56 * Set HIDReportParser to be used.
kotakku 0:b1ce54272580 57 * @param id Id of parser.
kotakku 0:b1ce54272580 58 * @param prs Pointer to HIDReportParser.
kotakku 0:b1ce54272580 59 * @return Returns true if the HIDReportParser is set. False otherwise.
kotakku 0:b1ce54272580 60 */
kotakku 0:b1ce54272580 61 bool SetReportParser(uint8_t id, HIDReportParser *prs) {
kotakku 0:b1ce54272580 62 if (id >= NUM_PARSERS)
kotakku 0:b1ce54272580 63 return false;
kotakku 0:b1ce54272580 64 pRptParser[id] = prs;
kotakku 0:b1ce54272580 65 return true;
kotakku 0:b1ce54272580 66 };
kotakku 0:b1ce54272580 67
kotakku 0:b1ce54272580 68 /**
kotakku 0:b1ce54272580 69 * Set HID protocol mode.
kotakku 0:b1ce54272580 70 * @param mode HID protocol to use. Either USB_HID_BOOT_PROTOCOL or HID_RPT_PROTOCOL.
kotakku 0:b1ce54272580 71 */
kotakku 0:b1ce54272580 72 void setProtocolMode(uint8_t mode) {
kotakku 0:b1ce54272580 73 protocolMode = mode;
kotakku 0:b1ce54272580 74 };
kotakku 0:b1ce54272580 75
kotakku 0:b1ce54272580 76 /**@{*/
kotakku 0:b1ce54272580 77 /**
kotakku 0:b1ce54272580 78 * Used to set the leds on a keyboard.
kotakku 0:b1ce54272580 79 * @param data See ::KBDLEDS in hidboot.h
kotakku 0:b1ce54272580 80 */
kotakku 0:b1ce54272580 81 void setLeds(struct KBDLEDS data) {
kotakku 0:b1ce54272580 82 setLeds(*((uint8_t*)&data));
kotakku 0:b1ce54272580 83 };
kotakku 0:b1ce54272580 84 void setLeds(uint8_t data);
kotakku 0:b1ce54272580 85 /**@}*/
kotakku 0:b1ce54272580 86
kotakku 0:b1ce54272580 87 /** True if a device is connected */
kotakku 0:b1ce54272580 88 bool connected;
kotakku 0:b1ce54272580 89
kotakku 0:b1ce54272580 90 /** Call this to start the pairing sequence with a device */
kotakku 0:b1ce54272580 91 void pair(void) {
kotakku 0:b1ce54272580 92 if(pBtd)
kotakku 0:b1ce54272580 93 pBtd->pairWithHID();
kotakku 0:b1ce54272580 94 };
kotakku 0:b1ce54272580 95
kotakku 0:b1ce54272580 96 protected:
kotakku 0:b1ce54272580 97 /** @name BluetoothService implementation */
kotakku 0:b1ce54272580 98 /**
kotakku 0:b1ce54272580 99 * Used to pass acldata to the services.
kotakku 0:b1ce54272580 100 * @param ACLData Incoming acldata.
kotakku 0:b1ce54272580 101 */
kotakku 0:b1ce54272580 102 void ACLData(uint8_t* ACLData);
kotakku 0:b1ce54272580 103 /** Used to run part of the state machine. */
kotakku 0:b1ce54272580 104 void Run();
kotakku 0:b1ce54272580 105 /** Use this to reset the service. */
kotakku 0:b1ce54272580 106 void Reset();
kotakku 0:b1ce54272580 107 /**
kotakku 0:b1ce54272580 108 * Called when a device is successfully initialized.
kotakku 0:b1ce54272580 109 * Use attachOnInit(void (*funcOnInit)(void)) to call your own function.
kotakku 0:b1ce54272580 110 * This is useful for instance if you want to set the LEDs in a specific way.
kotakku 0:b1ce54272580 111 */
kotakku 0:b1ce54272580 112 void onInit() {
kotakku 0:b1ce54272580 113 if(pFuncOnInit)
kotakku 0:b1ce54272580 114 pFuncOnInit(); // Call the user function
kotakku 0:b1ce54272580 115 OnInitBTHID();
kotakku 0:b1ce54272580 116 };
kotakku 0:b1ce54272580 117 /**@}*/
kotakku 0:b1ce54272580 118
kotakku 0:b1ce54272580 119 /** @name Overridable functions */
kotakku 0:b1ce54272580 120 /**
kotakku 0:b1ce54272580 121 * Used to parse Bluetooth HID data to any class that inherits this class.
kotakku 0:b1ce54272580 122 * @param len The length of the incoming data.
kotakku 0:b1ce54272580 123 * @param buf Pointer to the data buffer.
kotakku 0:b1ce54272580 124 */
kotakku 0:b1ce54272580 125 virtual void ParseBTHIDData(uint8_t len __attribute__((unused)), uint8_t *buf __attribute__((unused))) {
kotakku 0:b1ce54272580 126 return;
kotakku 0:b1ce54272580 127 };
kotakku 0:b1ce54272580 128 /** Called when a device is connected */
kotakku 0:b1ce54272580 129 virtual void OnInitBTHID() {
kotakku 0:b1ce54272580 130 return;
kotakku 0:b1ce54272580 131 };
kotakku 0:b1ce54272580 132 /** Used to reset any buffers in the class that inherits this */
kotakku 0:b1ce54272580 133 virtual void ResetBTHID() {
kotakku 0:b1ce54272580 134 return;
kotakku 0:b1ce54272580 135 }
kotakku 0:b1ce54272580 136 /**@}*/
kotakku 0:b1ce54272580 137
kotakku 0:b1ce54272580 138 /** L2CAP source CID for HID_Control */
kotakku 0:b1ce54272580 139 uint8_t control_scid[2];
kotakku 0:b1ce54272580 140
kotakku 0:b1ce54272580 141 /** L2CAP source CID for HID_Interrupt */
kotakku 0:b1ce54272580 142 uint8_t interrupt_scid[2];
kotakku 0:b1ce54272580 143
kotakku 0:b1ce54272580 144 private:
kotakku 0:b1ce54272580 145 HIDReportParser *pRptParser[NUM_PARSERS]; // Pointer to HIDReportParsers.
kotakku 0:b1ce54272580 146
kotakku 0:b1ce54272580 147 /** Set report protocol. */
kotakku 0:b1ce54272580 148 void setProtocol();
kotakku 0:b1ce54272580 149 uint8_t protocolMode;
kotakku 0:b1ce54272580 150
kotakku 0:b1ce54272580 151 void L2CAP_task(); // L2CAP state machine
kotakku 0:b1ce54272580 152
kotakku 0:b1ce54272580 153 bool activeConnection; // Used to indicate if it already has established a connection
kotakku 0:b1ce54272580 154
kotakku 0:b1ce54272580 155 /* Variables used for L2CAP communication */
kotakku 0:b1ce54272580 156 uint8_t control_dcid[2]; // L2CAP device CID for HID_Control - Always 0x0070
kotakku 0:b1ce54272580 157 uint8_t interrupt_dcid[2]; // L2CAP device CID for HID_Interrupt - Always 0x0071
kotakku 0:b1ce54272580 158 uint8_t l2cap_state;
kotakku 0:b1ce54272580 159 };
kotakku 0:b1ce54272580 160 #endif
kotakku 0:b1ce54272580 161