usb-serial-for-android icon indicating copy to clipboard operation
usb-serial-for-android copied to clipboard

Android USB host serial driver library for CDC, FTDI, Arduino and other devices.

Results 26 usb-serial-for-android issues
Sort by recently updated
recently updated
newest added

Hello. Can I use this library for UNITY ?

question
client:unity

So I made a ticket awhile ago in regards to this #516 . I just had a chance to get back to this and I think I have figured out...

build

Hi, I'm trying to use your library, and wrote this `piece` of code: ``` val manager = getSystemService(Context.USB_SERVICE) as UsbManager val availableDrivers = UsbSerialProber.getDefaultProber().findAllDrivers(manager) if (availableDrivers.isNotEmpty()) { val driver =...

question
not-reproducible
connection-freeze

I have made a custom keyboard which is a service and I need to read obtained data via keyboard using this library I could only get data to the keyboard...

question
solution-proposed

I was successfully using this library with Android 10 on Unity 2021.3.4f1. An update by Meta to Android 12L broke several things including USB communications. This is what I get...

question
solution-proposed

The problem is we are sending and receiving data from two different usb devices. How to differentiate between the data from two devices ?

question
solution-proposed

Hi, I am trying to create Unity plugin using USB serial connection. After implementation of the plugin and including it in build.gradle I try to invoke the described connection method....

client:unity

Hi, We are currently using the library as a plugin for a Unity app. Unity script refresh rate is 30Hz so we are polling `port.read()` every ~30mS. Device is sending...

question
solution-proposed

The `SerialInputOutputManager` currently potentially does an no-timeout read (depending on the timeout settings) before write in each step. If the read data depends on something being written, this results in...

enhancement

I followed your tutorial, but I'm having issues with UsbManager in Kotlin and Android Studio Java. When I use the command val manager: UsbManager = (UsbManager) getSystemService(Context.USB_SERVICE), the (UsbManager) spits...

question
client:kotlin