Questions tagged [32feet]

32feet.NET is a shared-source project to make personal area networking technologies such as Bluetooth, Infrared (IrDA) and more, easily accessible from .NET code.

32feet.NET is a shared-source project to make personal area networking technologies such as Bluetooth, Infrared (IrDA) and more, easily accessible from .NET code.

See http://32feet.codeplex.com/

149 questions
0
votes
1 answer

Trouble Connecting To Known Bluetooth Device

I am using 32Feet.Net's sample (list below) with using statements removed for brevity. static void Main(string[] args) { BluetoothClient client = new BluetoothClient(); BluetoothDeviceInfo device = null; foreach (var…
octopusgrabbus
  • 10,555
  • 15
  • 68
  • 131
0
votes
0 answers

Unable to connect to Bluetooth HID device with InTheHand.Net (32feet)

I am trying to write a program in C# with that connects to the Nintendo Switch JoyCon controller (which is a Bluetooth HID device) using the 32feet library. I want to bypass the buggy Bluetooth pairing system in Windows 10, so this is why I am…
Lázár Zsolt
  • 685
  • 8
  • 29
0
votes
1 answer

C# bluetooth serial terminal with InTheHand

How?! All I want is a simple serial connection between my C# app and something else -- Bluetooth terminal app on Android, and eventually Arduino. However, nothing that I've tried works. The Android terminal app can connect to this and C# receives…
Richard Barraclough
  • 2,625
  • 3
  • 36
  • 54
0
votes
0 answers

Get Bluetooth Devices sorted by strength/proximity

I am trying to build a solution in C# which allows the identification of a laptop based on the Bluetooth devices around it. I hope to preferably use Bluetooth LE and have the ability to know which devices are more likely relevant by their…
Ryan_DS
  • 750
  • 7
  • 28
0
votes
0 answers

Blue Tooth Discover is giving old name if I discover after bluetooth device rename

I am using 32 feet library to connect and discover Bluetooth devices. If I rename my bluetooth device name, after that if I try to discover, its giving me old name. 1)Connect to bluetooh device1. 2)Disconnect to bluetooh device1. 3)Rename…
0
votes
0 answers

Send data over Bluetooth at high frequency

I am developing an application that has two components. One is an Android App made in MonoAndroid with C#, and the other is a Windows app, made in WPF with C#. The Android app, should send a pack of 3 bytes with around 250 packs per second. The…
Lupu Silviu
  • 1,145
  • 11
  • 23
0
votes
0 answers

32feet - windows 10 bluetooth beginconnect fail c#

I have my phone authenticated and trying to connect to the device on windows 10, its failing as in screenshot.Device is paired and authenticated. non-connected sockets
user3182464
  • 53
  • 1
  • 8
0
votes
1 answer

How to resolve 32feet.NET error in Unity while pairing with an external bluetooth device ?

I do not know the problem here. I am using a bluetooth device for connection to Unity. I have used visual studio to code. My problem is that my code works fine on Visual Studio. But when I run the same program on Unity, it starts giving me this…
Magneto
  • 17
  • 5
0
votes
1 answer

Bluetooth Call Receive with 32feet.net and c#

I need to perform two task in c# 1) with USB cable 2) with Bluetooth i want to dial and receive calls from smart android mobile. Mobile can be connected with USB cable or Bluetooth. I can dial and receive calls using USB cable by AT commands.…
Naseem
  • 21
  • 3
0
votes
1 answer

Sending text, Images, and videos to andriod device from WPF over Bluetooth

I am developing a WPF application, capable of sending, and receiving text, images, and videos to Android devices over Bluetooth. I'm using 32feet.Net library. Currently, I can send, and receive images and videos using ObexObjectPush service but I…
Mohit Bora
  • 113
  • 1
  • 10
0
votes
1 answer

32feet client connecting thread failing

I'm trying to connect through the application I'm making as a client to my phone for testing purposes, but I'm missing something. After pairing the devices, the program should open a new thread on which it runs client.BeginConnect, but it only gets…
MrE
  • 3
  • 3
0
votes
0 answers

Send multiple images to pc using bluetooth

How to send multiple images from android mobile to pc via bluetooth connection. I made app that sends single image/file. This app uses 32feet.net and OBEX. Here is my code: ObexListener.mBtListener = new…
0
votes
1 answer

How can I send data via Bluetooth from C# to a MagicBlue LED?

I am writing a .NET application that needs to send Bluetooth packages to a MagicBlue LED. In other words, I would like to create a .NET application similar to it's Android one: https://itunes.apple.com/us/app/led-magic-blue/id992330218?mt=8 Here is…
PianoSong
  • 340
  • 4
  • 18
0
votes
1 answer

C# read bluetooth stream reliably (InTheHand 32feet)

I have a problem with reliably read a bluetooth stream. It's the first time I worked with bluetooth connections. The application communicates with a Arduino over a bluetooth module. It will send a command and get a response. For example, the…
DroidDude
  • 21
  • 7
0
votes
1 answer

How to identify a Bluetooth client?

I connect multiple Bluetooth clients and store them in a list: BluetoothListener blueListener = new BluetoothListener(mUUID); blueListener.Start(); while (true) { try { //accept available clients for connection …
Ivan
  • 1,081
  • 2
  • 17
  • 43