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 /*
kotakku 0:b1ce54272580 2 arStream.h - base class for character-based streams.
kotakku 0:b1ce54272580 3 Copyright (c) 2010 David A. Mellis. All right reserved.
kotakku 0:b1ce54272580 4
kotakku 0:b1ce54272580 5 This library is free software; you can redistribute it and/or
kotakku 0:b1ce54272580 6 modify it under the terms of the GNU Lesser General Public
kotakku 0:b1ce54272580 7 License as published by the Free Software Foundation; either
kotakku 0:b1ce54272580 8 version 2.1 of the License, or (at your option) any later version.
kotakku 0:b1ce54272580 9
kotakku 0:b1ce54272580 10 This library is distributed in the hope that it will be useful,
kotakku 0:b1ce54272580 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
kotakku 0:b1ce54272580 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
kotakku 0:b1ce54272580 13 Lesser General Public License for more details.
kotakku 0:b1ce54272580 14
kotakku 0:b1ce54272580 15 You should have received a copy of the GNU Lesser General Public
kotakku 0:b1ce54272580 16 License along with this library; if not, write to the Free Software
kotakku 0:b1ce54272580 17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
kotakku 0:b1ce54272580 18
kotakku 0:b1ce54272580 19 parsing functions based on TextFinder library by Michael Margolis
kotakku 0:b1ce54272580 20 */
kotakku 0:b1ce54272580 21
kotakku 0:b1ce54272580 22 #ifndef Stream_h
kotakku 0:b1ce54272580 23 #define Stream_h
kotakku 0:b1ce54272580 24
kotakku 0:b1ce54272580 25 #include <inttypes.h>
kotakku 0:b1ce54272580 26 #include "Print.h"
kotakku 0:b1ce54272580 27
kotakku 0:b1ce54272580 28 // compatability macros for testing
kotakku 0:b1ce54272580 29 /*
kotakku 0:b1ce54272580 30 #define getInt() parseInt()
kotakku 0:b1ce54272580 31 #define getInt(skipChar) parseInt(skipchar)
kotakku 0:b1ce54272580 32 #define getFloat() parseFloat()
kotakku 0:b1ce54272580 33 #define getFloat(skipChar) parseFloat(skipChar)
kotakku 0:b1ce54272580 34 #define getString( pre_string, post_string, buffer, length)
kotakku 0:b1ce54272580 35 readBytesBetween( pre_string, terminator, buffer, length)
kotakku 0:b1ce54272580 36 */
kotakku 0:b1ce54272580 37
kotakku 0:b1ce54272580 38 class arStream : public Print
kotakku 0:b1ce54272580 39 {
kotakku 0:b1ce54272580 40 protected:
kotakku 0:b1ce54272580 41 unsigned long _timeout; // number of milliseconds to wait for the next char before aborting timed read
kotakku 0:b1ce54272580 42 unsigned long _startMillis; // used for timeout measurement
kotakku 0:b1ce54272580 43 int timedRead(); // private method to read stream with timeout
kotakku 0:b1ce54272580 44 int timedPeek(); // private method to peek stream with timeout
kotakku 0:b1ce54272580 45 int peekNextDigit(); // returns the next numeric digit in the stream or -1 if timeout
kotakku 0:b1ce54272580 46
kotakku 0:b1ce54272580 47 public:
kotakku 0:b1ce54272580 48 virtual int available() = 0;
kotakku 0:b1ce54272580 49 virtual int read() = 0;
kotakku 0:b1ce54272580 50 virtual int peek() = 0;
kotakku 0:b1ce54272580 51 virtual void flush() = 0;
kotakku 0:b1ce54272580 52
kotakku 0:b1ce54272580 53 arStream() {_timeout=1000;}
kotakku 0:b1ce54272580 54
kotakku 0:b1ce54272580 55 // parsing methods
kotakku 0:b1ce54272580 56
kotakku 0:b1ce54272580 57 void setTimeout(unsigned long timeout); // sets maximum milliseconds to wait for stream data, default is 1 second
kotakku 0:b1ce54272580 58
kotakku 0:b1ce54272580 59 bool find(char *target); // reads data from the stream until the target string is found
kotakku 0:b1ce54272580 60 bool find(uint8_t *target) { return find ((char *)target); }
kotakku 0:b1ce54272580 61 // returns true if target string is found, false if timed out (see setTimeout)
kotakku 0:b1ce54272580 62
kotakku 0:b1ce54272580 63 bool find(char *target, size_t length); // reads data from the stream until the target string of given length is found
kotakku 0:b1ce54272580 64 bool find(uint8_t *target, size_t length) { return find ((char *)target, length); }
kotakku 0:b1ce54272580 65 // returns true if target string is found, false if timed out
kotakku 0:b1ce54272580 66
kotakku 0:b1ce54272580 67 bool findUntil(char *target, char *terminator); // as find but search ends if the terminator string is found
kotakku 0:b1ce54272580 68 bool findUntil(uint8_t *target, char *terminator) { return findUntil((char *)target, terminator); }
kotakku 0:b1ce54272580 69
kotakku 0:b1ce54272580 70 bool findUntil(char *target, size_t targetLen, char *terminate, size_t termLen); // as above but search ends if the terminate string is found
kotakku 0:b1ce54272580 71 bool findUntil(uint8_t *target, size_t targetLen, char *terminate, size_t termLen) {return findUntil((char *)target, targetLen, terminate, termLen); }
kotakku 0:b1ce54272580 72
kotakku 0:b1ce54272580 73
kotakku 0:b1ce54272580 74 long parseInt(); // returns the first valid (long) integer value from the current position.
kotakku 0:b1ce54272580 75 // initial characters that are not digits (or the minus sign) are skipped
kotakku 0:b1ce54272580 76 // integer is terminated by the first character that is not a digit.
kotakku 0:b1ce54272580 77
kotakku 0:b1ce54272580 78 float parseFloat(); // float version of parseInt
kotakku 0:b1ce54272580 79
kotakku 0:b1ce54272580 80 size_t readBytes( char *buffer, size_t length); // read chars from stream into buffer
kotakku 0:b1ce54272580 81 size_t readBytes( uint8_t *buffer, size_t length) { return readBytes((char *)buffer, length); }
kotakku 0:b1ce54272580 82 // terminates if length characters have been read or timeout (see setTimeout)
kotakku 0:b1ce54272580 83 // returns the number of characters placed in the buffer (0 means no valid data found)
kotakku 0:b1ce54272580 84
kotakku 0:b1ce54272580 85 size_t readBytesUntil( char terminator, char *buffer, size_t length); // as readBytes with terminator character
kotakku 0:b1ce54272580 86 size_t readBytesUntil( char terminator, uint8_t *buffer, size_t length) { return readBytesUntil(terminator, (char *)buffer, length); }
kotakku 0:b1ce54272580 87 // terminates if length characters have been read, timeout, or if the terminator character detected
kotakku 0:b1ce54272580 88 // returns the number of characters placed in the buffer (0 means no valid data found)
kotakku 0:b1ce54272580 89
kotakku 0:b1ce54272580 90 // Arduino String functions to be added here
kotakku 0:b1ce54272580 91 String readString();
kotakku 0:b1ce54272580 92 String readStringUntil(char terminator);
kotakku 0:b1ce54272580 93
kotakku 0:b1ce54272580 94 protected:
kotakku 0:b1ce54272580 95 long parseInt(char skipChar); // as above but the given skipChar is ignored
kotakku 0:b1ce54272580 96 // as above but the given skipChar is ignored
kotakku 0:b1ce54272580 97 // this allows format characters (typically commas) in values to be ignored
kotakku 0:b1ce54272580 98
kotakku 0:b1ce54272580 99 float parseFloat(char skipChar); // as above but the given skipChar is ignored
kotakku 0:b1ce54272580 100
kotakku 0:b1ce54272580 101 struct MultiTarget {
kotakku 0:b1ce54272580 102 const char *str; // string you're searching for
kotakku 0:b1ce54272580 103 size_t len; // length of string you're searching for
kotakku 0:b1ce54272580 104 size_t index; // index used by the search routine.
kotakku 0:b1ce54272580 105 };
kotakku 0:b1ce54272580 106
kotakku 0:b1ce54272580 107 // This allows you to search for an arbitrary number of strings.
kotakku 0:b1ce54272580 108 // Returns index of the target that is found first or -1 if timeout occurs.
kotakku 0:b1ce54272580 109 int findMulti(struct MultiTarget *targets, int tCount);
kotakku 0:b1ce54272580 110 };
kotakku 0:b1ce54272580 111
kotakku 0:b1ce54272580 112 #endif
kotakku 0:b1ce54272580 113