Questions tagged [obex]

OBEX is an abbreviation of OBject EXchange, also termed IrOBEX

OBEX is an abbreviation of OBject EXchange, also termed IrOBEX, and is a communications protocol that facilitates the exchange of binary objects between devices.

83 questions
0
votes
0 answers

Getting file from Android via python bluetooth

I'm writting application and need to send text file from mobile phone to my PC. Using PyBluez,PyOBEX, Python 2.7.15 and Windows10 64bits, LG K10LTE. Tried to run code from this post: Convert and save string to binary file in Python But got error: …
Dragoe
  • 11
  • 1
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 to receive image in android sent by a server using Obex FTP

I have developed an application in android using the Android Bluetooth Chat Example. https://developer.android.com/samples/BluetoothChat/index.html I am suppose to receive data from an abc server by connecting my mobile client using Bluetooth. I…
Iram Khan
  • 37
  • 2
  • 12
0
votes
1 answer

obexftp -l fails, return code 81

I am currently attempting to use obex tools to browse (and later mount) the file system of an Android device (7.1.1). When I try to list using obexftp -l, it simply returns nothing. I have tried almost every possible combination of file parameters…
scott
  • 1
  • 3
0
votes
0 answers

Bluetooth transmission

I'm trying to make an program that send a file to a mobile device encrypted, and the device will get it in another program and decrypt it. So far I've done the bluetooth connection: private void Connect() { using (SelectBluetoothDeviceDialog…
Spoukey
  • 15
  • 6
0
votes
1 answer

Bluetooth receive file in c

I'm developing a bluetooth application in c using bluez and I want to send and receive file anyone have some code example that I can use? tnx
0
votes
1 answer

How can I copy multiple files via Bluetooth OBEX and 32feet?

What I want to achieve: Write a VB.NET program that grabs a folder structure on my Windows 8 and copies the structure to a base directory on my Samsung Galaxy S6 via Bluetooth. I am using 32feet by alanjmcf - Thanks for providing this wonderful…
0
votes
0 answers

Checking FTP server support in a Bluetooth device from an android app

I need to check whether on a Bluetooth device FTP server is supported or not from my android app. I can tell whether a BluetoothDevice is a Classic or LE or Dual from it. But how to tell whether it supports FTP server - it allows us to browse…
Mohanakrrishna
  • 148
  • 3
  • 13
0
votes
2 answers

Is there an alternative to OBEX?

I’m programing a desktop application to communicate with a stethoscope using Bluetooth. Initially I would like to use OBEX, but I’m verify the services available, using the code in this…
Daniel Pereira
  • 435
  • 2
  • 7
  • 13
0
votes
1 answer

Android RFComm with OBEX Push not working

I am trying to remake a java application into an android application, but I cannot make it work. The application is meant to talk to a device that uses OBEX Push. The device cannot take any incoming connections and it has no user interface but some…
Niklas Trygg
  • 1
  • 1
  • 1
0
votes
2 answers

Send file to remote device with bluetooth without the requirement of a pin using obexftp in terminal

Hi This command in terminal obexftp –nopath –noconn –uuid none –bluetooth –channel –put Should allow a file to be sent to remote bluetooth device without the requirement of a pin on a remote device. When i…
Nasir Shiraz
  • 161
  • 1
  • 3
  • 15
0
votes
1 answer

How to read phone state over bluetooth

I try to develop an application that connect to mobile phone and read its phone state (incoming call, outgoing call etc.) like a smart watch. I used a smartwatch and connect to my phone, then open android studio to look at logcat. I understand the…
0
votes
1 answer

Run SimpleOBEXClient/Server LightAquaBlue on OS X Yosemite 10.10

I have managed to install LightAquaBlue 0.4 (http://lightblue.sourceforge.net/LightAquaBlue/) through the command python setup.py install However, I have tried to build with Xcode 6.0 both projects SimpleOBEXClient/Server contained in the folder…
0
votes
1 answer

Convert and save string to binary file in Python

I'm using PyOBEX to exchange binary files (e.g. images etc.) between my computer (Windows 7) and my phone (Android). However, when I use get() to get a file from my phone, it arrives on my computer as a str. I tried using the chardet module to find…
balt
  • 85
  • 10
0
votes
1 answer

How to use 32feet.net as raw OBEX library?

If I have a non-Bluetooth device which uses OBEX over a serial port for accessing its file-system, is it possible to use the 32feet.net API to do this, or will I have to look elsewhere? If I need to look elsewhere, does anyone have any…
Wedgeski
  • 3
  • 1