32feet icon indicating copy to clipboard operation
32feet copied to clipboard

Personal Area Networking for .NET. Open source and professionally supported

Results 188 32feet issues
Sort by recently updated
recently updated
newest added

I have tried to look for any documentation on this but i can't find anything. So here i ask how do i recieve Audio from Phone and send Mic to...

I found this function, but it return only enabled services. [installedServices](https://github.com/inthehand/32feet/wiki/Peer-Device-Information#installedservices)

enhancement

Hi, ``` BluetoothClient client=new BluetoothClient(); foreach (var device in client.DiscoverDevices()) { dev.Add(device); list.Add(device); } ``` I am using DiscoverDevices() from 32feet bluetooth lib to get the the nearby bluetooth connections....

Hi, ``` BluetoothClient client=new BluetoothClient(); foreach (var device in client.DiscoverDevicesInRange()) { dev.Add(device); list.Add(device); } ``` I am using DiscoverDevicesInRange() from 32feet bluetooth lib to get the nearby bluetooth connections. I...

I'm trying to connect from Windows to my Android device via the serial port with this code: var localClient = new BluetoothClient(); foreach (BluetoothDeviceInfo device in localClient.PairedDevices) { var address...

Windows

When I pair using BluetoothSecurity.PairRequest Method, android opens a dialog so I pair manually. Is there a way to pair using Android 12.0 Api 33 and NOT pair manually? Thanks......

enhancement
Android

hi. I have a problem with ios and BLE (MAUI .NET 8). On iOS, BLE disconnects very frequently. I would expect an event to be generated upon disconnection (GattServerDisconnected??) but...

bug
iOS

Hello, When calling either `ScanForDevicesAsync` or `RequestDeviceAsync` on macOS 13.5 a `Tmds.DBus.ConnectException` will always occur, Here's the examle code: ```c# var cts = new CancellationTokenSource(); cts.CancelAfter(5000); var discoveredDevices = await...

macOS

Hello, When trying to get all characteristics of service this will always occur on Ubuntu 22.04 but on windows won't: ![image](https://github.com/inthehand/32feet/assets/84191144/05712c70-5cb6-466c-8578-5e595ed458aa) Here's the code: ```csharp await device.Gatt.ConnectAsync(); Console.WriteLine("Connected"); var service...

bug
Linux

Hi, I am using this library to get a list of paired devices In my Xamarin.Forms app. I can get a device list in Android but not in iOS. when...

iOS