bluetooth

Does java provide API's for laptop connectivity using bluetooth

Does java provide API's for laptop connectivity using bluetooth ...

iPhone 4: set up/use bluetooth SPP

How would I program an iPhone app that utilitizes bluetooth SPP to connect to another bluetooth device? I can't find the documentation anywhere. Thanks so much. EDIT I guess Mac OS X uses RFCOMM but i can't find anything similar in iphone documentation ...

Android: StreamCorruptedException while sending an image as byte array over bluetooth

I try to send an image over bluetooth to another device. This works mostly fine, but sometimes, I get a StreamCorruptedException: Wrong format: 0x27 on the receiving device. Anybody knows what this means? And how can I avoid that? ...

Windows Phone 7 Bluetooth/Wi-Fi

I would like to create application for Windows Phone 7, which will be communicating with desktop application via Bluetooth/Wi-Fi. Is there any API in Silverlight, which allows to use Bluetooth/Wi-Fi programatically? ...

How can I transfer via bluetooth in HTC ADP2 mobile?

Anybody knows how to transfer files via bluetooth in HTC ADP2 mobile phone? More over I cannot see the memory card items in the Gallery except photos. ...

Android Bluetooth: Service Discovery Failed Exception

Howdy, I'm currently working on an Android application that connects to a instrument via Bluetooth, and needs to write string commands and receive string responses back. Currently I have the connect/read/write working for TCP/IP over wi-fi and now trying to implement bluetooth. But am running into some roadblocks. I have been searchi...

Access iPhone's Bluetooth and normal audio session at the same time?

Hey guys, I have a bit of an interesting problem and I'm not sure how to go about solving it. I need to take the audio from a connected bluetooth headset and pipe it directly to the speaker on the iPhone's device and vice-versa. Accessing the Bluetooth audio session is easy enough: // Use a Play and Record Category, because we'll be bot...

How to send bluetooth messages between iphones

I need to send bluetooth messages between phones. How do i do that? ...

How to set permissions for Android Bluetooth

I'm new to Android development. I'm trying to get a simple HelloWorld app going on my (rooted) phone - and the app is trying to enable Bluetooth. I've set the Bluetooth permissions in my manifest is as follows, but I'm getting a Permission Denial exception when I try to run the application on my phone via Eclipse: <?xml version="1....

probleam with getDiscoveryAgent() !

Hi i want to use mobile device bluetooth , i use this code but there is probleam with this method getDiscoveryAgent() . this error shown : Null pointer java/lang/nullpointer exeption this is my code public class Midlet extends MIDlet implements CommandListener { LocalDevice local = null; DiscoveryAgent agent = null; List activ...

BluetoothChat doesn't work

I can't connect Motorola Droid and Nexus One using BluetoothChat It's always return "Unnable to connect". So the socket is always close. But when I try to connect Motorola Droid and Nokia N97 They are always connect. How can I connect Motorola Droid and Nexus One ? Where is the problem? ...

Can't connect to OBDKey sometimes

I can't connect to OBDKey sometimes . I use BluetoothChat example to connect to OBDKey. I can connect to it and read data, but sometimes socket is closed. m = mmDevice.getClass().getMethod("createRfcommSocket", new Class[] { int.class }); mmSocket = (BluetoothSocket) m.invoke(mmDevice, 1); mmSocket.connect(); Before this OBDKey is p...

Play the Recorded Audio live through Bluetooth Headset in iPhone

I am planning to record the sound using the iPhone and directly play it through Bluetooth Headset. Is it posssible? ...

Is it possible to redirect the iPhone Mic input (environment Sounds) to Bluetooth Headset?

Can we redirect a live recording, that is audio input from mic to Bluetooth Headset? is this possible? ...

Can we use EASession object's inputstream property to send data to a bluetooth Headset in iPhone?

Can we send a recorded audio stream to the bluetooth Headset input, using the EASession object? ...

Is iPhone Proximity detection possible with Bluetooth? But only to obtain the MAC address of the device

I need to know the MAC address or bluetooth device name of other devices near an iPhone. is this possible with the regular API? ...

Bluetooth How can I prevent crashed aftet connect()

I want to connect my Droid via bluetooth to OBDKey . I get Exception : connectionFailed .How can I solve this problem? This is my part of code private class ConnectThread extends Thread { private final BluetoothDevice mmDevice; public ConnectThread(BluetoothDevice device) { mmDevice = device; int RFCOMM_CHANEL = 1; //...

Bluetooth connection lost after send mesage (BluetothChat)

I want to connect my Droid to OBDKey I use BluetoothChat as example to connect via bluetooth I connect to OBDKey succesfully but after send message to OBDKey connection lost How can I prevent this? ...

checking bluetooth application in Motorola iDEN i465?

How can I check the bluetooth applications in the Motorola iDEN i465 device simulator? I have installed the MOTODEV SDK. Within, there is the facility to check bluetooth applications. I am unsure where to start. ...

J2ME: how to test Bluetooth application on emulator?

I want to write an application that sends text from one device to another. How can I test it with an emulator on a PC? Is it possible with the Sun Java Wireless Toolkit? ...