Questions tagged [spp]

Serial Port Profile (SPP) defines how to set up virtual serial ports and connect two Bluetooth enabled devices

Serial Port Profile (SPP) is a Bluetooth mode where the connected devices communicate via virtual serial ports.

130 questions
0
votes
1 answer

Unable to read from /dev/rfcomm

I am trying to connect my target to mobile device through blue-tooth SPP profile. Once bluetooth connection is up, request is made to create rfcomm channel to communicate. output of ls -all /dev/rfcomm0 crw-rw-rw- 1 root dialout 216, 0…
Daemon
  • 1,239
  • 1
  • 16
  • 33
0
votes
1 answer

java - creating new thread to randomly send data to printwriter

I'm messing arount with Bluetooth SPP. I'm using SimpleSPPClient from this thread and i'm using blk wd bc 04b demo board which is configured to just send back anything that is sent to it. I'd like to create new thread which would take PrintWriter as…
Sysel
  • 31
  • 1
  • 3
  • 8
0
votes
1 answer

Is there a way to change bluetooth module's baud rate via Bluetooth connection with Android device?

I would like to change a default baud rate of the bluetooth module. I am having an IR receiver which works on baud rate 2400 and it is connected directly to bluetooth module. I want the flow to be IR receiver->Bluetooth module->Android device. To…
Ondrej Tokar
  • 4,298
  • 7
  • 42
  • 98
0
votes
1 answer

C code to Read data from nonin Pulse Oximeter device via bluetooth Serial Port profile in linux

I am trying to communicate to the Nonin Pulse oximeter device to read the data (Pulse rate and SPO2 level) via Bluetooth. Nonin device supports SPP and HDP profile. I want to communicate through SPP profile. I am able to scan and pair with the…
Jyothi
  • 21
  • 3
0
votes
1 answer

Android Bluetooth SPP - How to stop transmitting the internal send buffer ?

I am trying to control/operate a motor from an android phone in "as close as possible" realtime using the Android SPP Bluetooth socket interface. The motor ought to run in a so called 'dead man' operation mode. So the motor will only turn if a…
Peter
  • 41
  • 3
0
votes
1 answer

Connect iOS device to Bluetooth device with SPP

I'm working on one watch which shows iOS device notification like.. Display Installed app notification Display Call notification Display Message notification.. etc I have read some articles and came to know about GATT and ANCS, and this two itself…
RayofHope
  • 1,157
  • 2
  • 13
  • 30
0
votes
1 answer

Connect to A&D UA-767PBT blood pressure

I need to take measurements from an A&D Medical UA-767PBT (without the ending "C") to a simple android app. The UA-767PBT uses SDP and SPP to communicate with an access point (my android tablet). I have the service name, cod filter and pin. I've…
user261591
  • 11
  • 1
  • 6
0
votes
1 answer

Bluetooth spp, if statement inside handler not working

I am using the bluetooth chat example and i have the following problem.. When i add an if statement inside handler it always return false.. case MESSAGE_READ: byte[] readBuf = (byte[]) msg.obj; String…
Larry
  • 3
  • 2
0
votes
1 answer

SPP on Bluedroid

I wanted to see if anyone has attempted to implement SPP on Bluedroid. After looking at the stack source you can see clearly that the SPP_INCLUDED flag is false and there is no source for SPP in the directory that contains it. I have a device that…
Lloyd
  • 31
  • 2
  • 4
0
votes
3 answers

Bluetooth -> Winapi/32feet. Two connection from Pc to one device using Spp

It`s possible to establish two connections( or more) between Pc and other device? When I try to do that I have got exception: 10048 -> ex.Message = "A connect request was made on an already connected socket…
0
votes
2 answers

Programming on Bluetooth module

Now I have a Bluetooth module which support SPP, I want it to support BLE 4.0. Can I program on it? How can I start? In fact I want it to connect to iOS app, but I don't want to be included in MFI, that's the only solution I figured out.
kenshinji
  • 1,713
  • 4
  • 19
  • 34
0
votes
1 answer

Android phone Bluetooth supports SPP communication or not?

I'm trying to develop an App to receive continuous data from an Bluetooth device which is not an Android.So my question is that Is it possible by android java to do this by programming or do I need to have any SPP supporting software to be installed…
user2718012
  • 11
  • 1
  • 8
0
votes
0 answers

Why is PrintWriter used in this code snippet for bluetooth SPP communication?

Here is the code snippet: StreamConnection st_connect=(StreamConnection)Connector.open(connectionURL); OutputStream outStream=st_connect.openOutputStream(); PrintWriter pWriter=new PrintWriter(new…
Flame of udun
  • 1,888
  • 6
  • 28
  • 67
0
votes
0 answers

Android phone is listening to Bluetooth connection but the Bluetooth device fails to connect

The device is Omron Bluetooth Blood Pressure Monitor 708-BT here. The health device is already paired to my HTC Sensation running Android 4.0.3. The health device initiates the connection and my Android app is supposed to accept it. The app is…
ericn
  • 10,647
  • 12
  • 60
  • 105
0
votes
0 answers

Scala eclipse IDE not recognizing package import statements

I'm trying to build a simple chat scalatra file as an exercise, and was having some frustrating packaging problems. (I'm using Eclipse Indigo's Scala IDE) This is my file hierarchy: ScalaChat (project…
Alex Spangher
  • 857
  • 2
  • 13
  • 20
1 2 3
8
9