Search results

  1. K

    T3.6 USB Host - Bluetooth

    Been quite a while since I've checked in on this thread... (Feb 2020) Had wondered where development was headed at getting multiple device support. (Was looking to use 2 PS3 Move Navigation controllers) Looks like KurtE found some time, and some merges happened since then...
  2. K

    T3.6 USB Host - Bluetooth

    It has been a bit since I've closely followed this.... thought that I would ask how things are going at being able to read from 2 different PS3 controllers. Looks like things have been pretty quiet on that front - with one of the comments from Kurt being "Running into some issues, that I need...
  3. K

    T3.6 USB Host - Bluetooth

    In looking over the code changes, this is what I missed: } else if (strncmp((const char *)remoteName, "Navigation Controller", 21) == 0) { DBGPrintf(" JoystickController::mapNameToJoystickType %x %s - set to PS3\n", (uint32_t)this, remoteName); joystickType_ = PS3; I don't have one here...
  4. K

    T3.6 USB Host - Bluetooth

    Thanks! From a learning perpective, I will want to look over the code diff - but I will say that this appears to have fixed things. Without wires (I was already paired) - I was able to simply turn on the remote and start to get output to the screen. I grabbed a second remote, and it appears...
  5. K

    T3.6 USB Host - Bluetooth

    Historiclaly, I've used a sketch from Circuits@Home with one of their host shields on an Arduino. I've also used your JoystickBT.ino script to pair these successfully (with a minor modification due to the lack of a select button) After pairing, I was able to successfully test using the...
  6. K

    T3.6 USB Host - Bluetooth

    Batteries that aren't overly strong is probably common with the age of them. There is a single LED that should blink while it is charging. It also blinks when you press the PS button and it is attempting to bind to a bluetooth host. From there, it depends on the program - as that can do various...
  7. K

    T3.6 USB Host - Bluetooth

    I'm definately not having an issue with pairing the controllers to the dongle. I can pair a set using my Mega/HostShield combo, and that connects so long as I've connected the PS3 Move navigation contoller once via wire during the same boot cycle of the Teensy. I can also pair a previously...
  8. K

    T3.6 USB Host - Bluetooth

    @KurtE - Thanks. I think I was more just hoping to get an understanding of: what is the experience is currently with a dualshock controller connecting if it has been previously paired. Can that happen without any cables being in the mix? (I may need to pick one up for testing)
  9. K

    T3.6 USB Host - Bluetooth

    Start with a PS3 controller and dongle that are already paired (and tested working). If I power up the Teensy 3.6 with JoystickBT.ino I can turn on the PS3 controller (PS button), lights flicker (on both controler and dongle) - but nothing new in the serial monitor. If I unplug the BT...
  10. K

    T3.6 USB Host - Bluetooth

    From my experience, these are effectively "half" of a DualShock 3 or Sixaxis PS3 Controller. The "Move Motion" controller is the "right" half, and the "Move Navigation" is the left haft. For our usage (controlling R2), we have been using one or two of the "Move Navigation" controllers. (The...
  11. K

    T3.6 USB Host - Bluetooth

    Few hiccups, and step forward with using Sony Move Navigation controllers: Modified joystick.cpp: From: { 0x054C, 0x0268, PS3, true }, To: { 0x054C, 0x0268, PS3, true }, { 0x054C, 0x042F, PS3, true }, { 0x054C, 0x03D5, PS3, true }, Modified hid.cpp: From: if (device->idVendor == 0x054C...
  12. K

    T3.6 USB Host - Bluetooth

    It has been many months since I've looked for updates about PS3 controllers over bluetooth. Looks like there has been some progress. That is great to see (thank you to those contributing). I'll have to dig out my Teensy boards and see how things are working with PS3 Move Navigation controllers.
  13. K

    T3.6 USB Host - Bluetooth

    It has been a bit since I've followed up to see what has been going on with USB Host support for the Teensy.... I had been hoping to see support for PS3 Move Navigation controllers (as seen in UHS 2.0). Hopefully I'll be able to find some down time soon to play with this.
  14. K

    Teensy 3.6 USB Host support

    I'm also looking for USB host mode for one of my projects... Have you found this thread: https://forum.pjrc.com/threads/28173-Teensy-3-x-NATIVE-USB-HOST-PREVIEW-AVAILABLE?highlight=uhs30
  15. K

    Teensy 3.x NATIVE USB HOST PREVIEW AVAILABLE

    I just wanted to take a moment and thank xxxajk for his work on this library. I've been using USB_Host_Shield_2.0 for some time now on an Arduino Mega (to interface with a PS3 controller via bluetooth), and recently started to look at Teensy as an alternative (enhancement). Looking forward to...
Back
Top