I want the Teensy to mimic the Xbox controller to the Xbox and control the Xbox. The Xbox won’t allow any XInput device as a PC would. The Teensy would have to pass through any authentication...
Type: Posts; User: btspp
I want the Teensy to mimic the Xbox controller to the Xbox and control the Xbox. The Xbox won’t allow any XInput device as a PC would. The Teensy would have to pass through any authentication...
This would be for a button on an Xbox controller. I don’t know how it’s wired. By both sides, I mean the circuit wires going in and out that pressing the button would complete.
Can the Teensy complete a circuit programmatically if it’s wired to both wires of a controller button?
Can I do this by modifying RawHID or do I need lower level usb calls?
Are there any project examples that proxy devices from a USB Host to the Teensy device? It would be like a USB analyzer reading packets from the device connected to the USB Host and forward it to the...
Teensy to Teensy connected with Serial 1 pins without ground connected worked perfectly. After moving (PC Teensy connects to) to a different outlet and power strips, the serial connection has errors...
I had my Teensy connected and while moving it, it started blinking or flashing red and stopped working. I connected it to a PC while holding the button down. It blinks or flashes red four times...
Can Teensy acting as a keyboard or mouse know when the host PC polls for key state or mouse state?
I want to prepare key state before the next poll from the host? If I use Metro with 16ms...
How can I connect multiple Teensy to one ground pin?
If I connect multiple client Teensy by serial to a host Teensy, the host only has 2 ground pins.
Is there anything that combines multiple...
Has anyone run into this? I could not find it by searching.
For one device, my Teensy as Audio (using the source above) can receive audio, but stops sending when another Teensy (as keyboard mouse...
Has anyone tried connecting Teensy as a Keyboard/Mouse device to the USB Host of a Teensy 4.1? I tried once with the Mouse example and couldn’t get it to work. I just wanted to know if there is a...
If it doesn’t work connected to the adapter, try using a USB hub on the adapter or try other adapters.
I had an issue in this link. https://forum.pjrc.com/threads/69032-AudioRecordQueue-never-available-after-Windows-records-once
Paul’s article on a USB hub bug....
How is the iPhone connected to the Teensy? USB hubs may cause issues. Try connecting directly or with different ports.
I can send and receive from two PCs now.
On one PC, I could only receive when the Teensy was connected to a USB hub. I could send and receive when the Teensy was connected directly to the USB...
Separating the sketches had no affect.
I moved one Teensy to another PC. The problem now is I can send audio from PC1 to PC2, but the Teensy can't send audio from PC2 to PC1.
It's the same if I...
Start recording on the receiving Teensy.
Play a sound from the transmitting Teensy.
Receiving Teensy records the sound.
Sound ends.
Play a sound from the transmitting Teensy.
It didn't make a difference. I need the delay to see Serial.print messages. Serial Monitor hits a buffer limit without the delay.
The source is at https://forum.pjrc.com/threads/69032-AudioRecordQueue-never-available-after-Windows-records-once
#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <SerialFlash.h>
AudioInputI2S i2s2; //xy=105,63
AudioInputUSB usb1; //xy=200,69 (must set Tools > USB Type to...
I have two Teensy 4.0 as Audio devices connected on Serial1 to send and receive audio.
AudioInputUSB -> AudioRecordQueue -> Serial1.write
Serial1.read -> AudioPlayQueue -> AudioOutputUSB
...
I have this working by adding Serial1 read and write to this example using usb and queues.
https://forum.pjrc.com/threads/51154-PassThroughUSB-with-queues
A problem I have is my Teensies stop...
Can we use this to transfer audio over serial? I want to send and receive audio between two Teensies connected by the serial pins.
Did you get this to work?
What happens to Mouse.move inputs when the USB host has a 125hz polling rate and the bInterval for Teensy is 1 or 1000hz?
How does Teensy or USB work when Mouse.move is called multiple times in a...
Xbox One loses Mouse.move input if called many times in a loop. The PS4 never loses input.
Googling shows Xbox One poll rate is 125hz for mouse. PS4 is 250hz.
I tried changing bInterval to 4...
How do I connect ground wires if I connect 4 teensies to a teensy 4.1 that only has 3 ground pins?
Can I connect the RX to TX directly with a wire or do we need a chip between them?
Does the USB Host Cable need 5 pins or can I use a 4 pin cable?
Teensy 4.1 can act as a keyboard to the PC and you can connect the gaming keyboard to the Teensy with a USB Host cable.
Is there anything implemented in USBHost_t36 bluetooth.cpp that lets a PC application send commands to a Teensy without getting into driver/kernel stuff?
USB Host Shield 2.0 has source for Bluetooth SPP. Are there any relations to USBHost_t36?
This comment suggests USB Host Library version 3.0 will work with Teensy 4.1.
To use Bluetooth serial ports between two Windows PCs:
- Go to Bluetooth Settings
- Add an Incoming COM port on computer A
- Connect to the Incoming COM port with putty on computer A (required to...
Are there any guides for communicating over Bluetooth serial ports with a PC? Windows has COM Ports in Bluetooth Settings and I have a USB Bluetooth dongle connected to a Teensy 4.1. Would I have to...
Is it possible to use serial ports on a Bluetooth dongle connected to the USB Host?
Does anyone know if USBHost_t36 supports SPP?
Edit: Apologies if this is the wrong forum to post it. I found...