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
1
vote
0 answers

how to establish a listener for incoming call

I wan t to create an application running on Windows Laptop to kind of remote control my mobile phone via Bluetooth. I would like to: establish a call on the mobile from Windows. display the number of an incoming call on the mobile on Windows (and…
thowa
  • 590
  • 1
  • 8
  • 29
1
vote
1 answer

Receiving continuous data using 32feet in .Net (BLUETOOTH)

I am creating a Windows Form application, where it is connecting to a device through bluetooth. I am able to send commands to the device and I am receiving the data continuously. The problem I am facing is that I am not able to show the continuous…
Akhil Nair
  • 434
  • 1
  • 6
  • 17
1
vote
0 answers

Receiving data via bluetooth to c# program

I'm using inTheHand library (32feet.NET). I have a device with bluetooth enabled and I want to connect with the device to my computer and than send data from the device to computer. I then want to catch that information with my program and process…
1
vote
0 answers

Unexpected bytes on NetworkStream. 32feet Bluetooth

I'm writing a bit of code to connect to a Bluetooth device. For the purpose of this question, the device can be considered to receive any number of bytes, buffer them and respond with 0x06 on a success or 0x15 on a failure. The problem I am having…
S Meredith
  • 95
  • 9
1
vote
0 answers

Bluetooth data transfer between android phone and 32fleet.Net

I have windows console application (written in C#) which needs to receive a string from Android phone (running Java application) via bluetooth. Windows console application is using 32feet.Net library to work with bluetooth. This is Java code…
Alex
  • 61
  • 3
1
vote
0 answers

Bluetooth listener

I'm using InTheHand.Net.Personal (32feet.NET) library for c#, I make a direct conection (without Seriar COM port) and I can send comand to device: String address = "XX:XX:XX:XX:XX:XX"; Guid mUUID = new…
Sara
  • 57
  • 4
1
vote
0 answers

Auto Accept Bluetooth Pairing Request C#

I am working on bluetooth communication between two computers. i am using a open source library name 32feet.net. i have dont most of the job. I have made application for two computers to chat with each other. But in order to start communication i…
Muhammad Gulfam
  • 225
  • 1
  • 6
  • 19
1
vote
0 answers

Unity bluetooth communication - implementation

So I have read and tried about everything in order to start a simple bluetooth listener in Unity but with no luck. And couldn't find anyone who managed this. The main issue is this socket exception: "SocketException: An address incompatible with…
mihaa123
  • 1,012
  • 9
  • 19
1
vote
1 answer

How to get COM port using 32feet in c#?

How do I get COM port where my mobile device connected through a bluetooth stick? I can already get the name of the device eg. 'Nokia C2-01' with device.DeviceName using the 32feet library but how can I make it look like this? "Nokia c2-01 connected…
Dac
  • 210
  • 3
  • 19
1
vote
1 answer

C# connection via Bluetooth with 32feet library

I am writting console Application using C# and 32feet library. I want connect via bluetooth to phone device. I was following this code : link I came across a problem while pairing two devices. I am using this line to request connection: bool…
rpieniazek
  • 2,160
  • 2
  • 12
  • 16
1
vote
0 answers

32feet gives me an exception if I send and receive at the same time

Im using 32feet to connect to an android phone with bluetooth. Both the phone and the pc have a bluetooth (bt) client and a server running. Everything works fine if I do only a send or a receive, but if I do a send on both sides at the same time, on…
gyozo kudor
  • 6,284
  • 10
  • 53
  • 80
1
vote
1 answer

Stream Audio to Bluetooth Device in C#

I am trying to stream Audio to a bluetooth device in-code in C#. I've picked up the 32feet.net library to help with this. I am able to get a bluetooth speaker paired just fine, and then I use the code below to connect to the device. …
TheJeff
  • 3,665
  • 34
  • 52
1
vote
1 answer

c#, Bluetooth get all in range paired undiscoverable devices

I have been quite a while on this problem. I was unable to detect undiscoverable devices in range. Yes, it is a safety precaution to make device undiscoverable, yet if device were paired wouldn't it be fair to allow detecting it while in…
user4074606
1
vote
0 answers

32Feet list / remove / put file on a bluetooth digital photo frame

I can authenticate myself on the device with this code: var dev = new BluetoothDeviceInfo(BluetoothAddress.Parse("0015836A3C0A")); if (!dev.Authenticated) BluetoothSecurity.PairRequest(dev.DeviceAddress, "0000"); But now, I would like put /…
Bob
  • 1,011
  • 3
  • 12
  • 28
1
vote
1 answer

C# 32feet obex bluetooth not supported by some phones

I have a project where a karaoke machine records the user and then lets the user connect to the machine via Bluetooth with his/her phone and download their recording. After a lot of reading, examples, documentations I tried using 32feet (the karaoke…
franOM
  • 13
  • 3