Re: How to get mac address of bluetooth with python in win7?

2014-08-07 Thread Ben Finney
elearn writes: > How to get mac address of bluetooth with python in win7? This may not be a Python-specific question. How would you get the MAC adress of a Bluetooth device in Windows, in any programming language? My advice is for you to do a web search https://duckduckgo.com/?q=pyt

How to get mac address of bluetooth with python in win7?

2014-08-07 Thread elearn
How to get mac address of bluetooth with python in win7? -- https://mail.python.org/mailman/listinfo/python-list

Re: Bluetooth Sockets

2013-07-16 Thread Christian Heimes
Am 13.07.2013 10:53, schrieb Simfake Fake: > Hi. I'm trying to connect to a bluetooth serial adaptor using python > 3.x. However, in python 3.3.2 win x32, I get "AttributeError: module has > no attribute AF_..." when trying to use socket.AF_BLUETOOTH, despite the > docs

Re: Bluetooth Sockets

2013-07-16 Thread Chris Angelico
On Tue, Jul 16, 2013 at 3:52 PM, Simfake Fake wrote: > Just bumping this, but has anybody have any personal experience with > bluetooth in python 3? Perhaps my issue is that the windows version doesn't > include it? I haven't worked with Bluetooth in Python, but my reading o

Re: Bluetooth Sockets

2013-07-16 Thread Simfake Fake
Just bumping this, but has anybody have any personal experience with bluetooth in python 3? Perhaps my issue is that the windows version doesn't include it? On Sat, Jul 13, 2013 at 6:23 PM, Simfake Fake wrote: > Hi. I'm trying to connect to a bluetooth serial adaptor using python 3

Bluetooth Sockets

2013-07-13 Thread Simfake Fake
Hi. I'm trying to connect to a bluetooth serial adaptor using python 3.x. However, in python 3.3.2 win x32, I get "AttributeError: module has no attribute AF_..." when trying to use socket.AF_BLUETOOTH, despite the docs http://docs.python.org/3.3/library/socket.html . The code

iPhone 5 bluetooth pairing problem

2013-07-09 Thread saishreemathi
My problem is basically that my iPhone 5 wont pair with any bluetooth devices at all. It won't even see other bluetooth devices and when it actually does, well, it ONLY sees my iMac, it wont pair at all. - no credit check mobile phone contracts -- View this message in context:

Re: Python parsing Bluetooth RFCOMM for 9 bytes

2012-12-13 Thread Barry Dick
> Is the following more like how you want it? > > > > data = "" > > try: > > while True: > > try: > > more = client_socket.recv(9) > > except bluetooth.BluetoothError, b: > >

Re: Python parsing Bluetooth RFCOMM for 9 bytes

2012-12-13 Thread MRAB
5321] Data: [00010048000602505e] My code so far looks like this... import bluetooth, sys, time, os, binascii, struct; # Create the client socket client_socket=BluetoothSocket( RFCOMM ) client_socket.connect(("10:00:E8:AC:4D:D0", 1)) data = "" try: w

Python parsing Bluetooth RFCOMM for 9 bytes

2012-12-13 Thread Barry Dick
far looks like this... import bluetooth, sys, time, os, binascii, struct; # Create the client socket client_socket=BluetoothSocket( RFCOMM ) client_socket.connect(("10:00:E8:AC:4D:D0", 1)) data = "" try: while True: try:

python\bluetooth / wsgi / apache 2.2

2012-12-13 Thread Barry Dick
I'm wanting to read from my bluetooth device (it just sends data/header with a checksum at the end, in a continuous mode "a biofeedback device") and I'm getting a weird error in my logs not allowing me to use multiple sockets. I guess with wsgi, I'm creating a link/mo

ping in bluetooth

2012-11-02 Thread Luca Sanna
hi, how do I send a ping in bluetooth? because android phones are not always visible. I can not find the ping command thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: error bluetooth

2012-10-05 Thread Luca Sanna
Il giorno venerdì 5 ottobre 2012 13:33:14 UTC+2, Hans Mulder ha scritto: > On 5/10/12 10:51:42, Luca Sanna wrote: > > > > > from bluetooth import * > > > > [..] > > > > > luca@luca-XPS-M1330:~/py-temperature/py-temperature$ python bluetoo

Re: error bluetooth

2012-10-05 Thread Hans Mulder
On 5/10/12 10:51:42, Luca Sanna wrote: > from bluetooth import * [..] > luca@luca-XPS-M1330:~/py-temperature/py-temperature$ python bluetooth.py When you say "from bluetooth import *", Python will find a file name "bluetooth.py" and import stuff from that file.

Re: error bluetooth

2012-10-05 Thread Dave Angel
On 10/05/2012 04:51 AM, Luca Sanna wrote: > the code is output the error of the ubuntu > > from bluetooth import * > > target_name = "My Phone" > target_address = None > > nearby_devices = discover_devices() > > for address in nearby_devices: >

Re: error bluetooth

2012-10-05 Thread Ulrich Eckhardt
Am 05.10.2012 10:51, schrieb Luca Sanna: the code is output the error of the ubuntu from bluetooth import * [...] nearby_devices = discover_devices() [...] the error luca@luca-XPS-M1330:~/py-temperature/py-temperature$ python bluetooth.py Traceback (most recent call last): File

error bluetooth

2012-10-05 Thread Luca Sanna
the code is output the error of the ubuntu from bluetooth import * target_name = "My Phone" target_address = None nearby_devices = discover_devices() for address in nearby_devices: if target_name == lookup_name( address ): target_address = address break if targ

Transfer files via bluetooth for Blackberry devices

2012-02-27 Thread isragaytan
Hi! I am newby on python. I am looking for a utility or a library for transfer files via bluetooth to blackberry. I am seeing that with obex may be is an option. Can you give me any advices on that?. Really appreciated Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Bluetooth

2011-06-26 Thread Daniel Kluev
On Mon, Jun 27, 2011 at 2:32 AM, Valentin de Pablo Fouce wrote: > Hi all, > > I'm looking for developing a bluetooth application in python, and I'm > looking for the most suitable python library for it. Googling some > time I found pyBluez (http://code.google.com/

Re: Python Bluetooth

2011-06-26 Thread Bastian Ballmann
Hi, Am Sun, 26 Jun 2011 13:37:50 -0400 schrieb Terry Reedy : > Were these libraries abandoned incomplete or just finished? Has the > bluetooth spec changed since then? > They're definetly incomplete, but i would say the most important / commonly used apis are implemented. The

Re: Python Bluetooth

2011-06-26 Thread Terry Reedy
On 6/26/2011 1:07 PM, Bastian Ballmann wrote: you can have a look at http://lightblue.sourceforge.net/ but it also seems to be unactive since end of 2009. schrieb Valentin de Pablo Fouce: I'm looking for developing a bluetooth application in python, and I'm looking for the mos

Re: Python Bluetooth

2011-06-26 Thread Bastian Ballmann
? HTH && Greets Basti Am Sun, 26 Jun 2011 08:32:27 -0700 (PDT) schrieb Valentin de Pablo Fouce : > Hi all, > > I'm looking for developing a bluetooth application in python, and I'm > looking for the most suitable python library for it. Googling som

Python Bluetooth

2011-06-26 Thread Valentin de Pablo Fouce
Hi all, I'm looking for developing a bluetooth application in python, and I'm looking for the most suitable python library for it. Googling some time I found pyBluez (http://code.google.com/p/pybluez/), however, the library seems to be stopped since end 2009 (latest update Nov 2009)

Re: Bluetooth

2010-03-11 Thread PythonAB
On 10 mrt 2010, at 16:17, Jeff Peck wrote: > On 3/7/2010 1:26 PM, PythonAB wrote: >> >> Hello, >> >> >> I'm writing a script that has to connect a bluetooth device >> with a 3D application. >> On my search for a bluetooth module i ran into th

Re: Bluetooth

2010-03-10 Thread Jeff Peck
On 3/7/2010 1:26 PM, PythonAB wrote: Hello, I'm writing a script that has to connect a bluetooth device with a 3D application. On my search for a bluetooth module i ran into this: http://www.python.org/download/releases/2.4/notes/ where it says: "The socket module now supports

Bluetooth

2010-03-07 Thread PythonAB
Hello, I'm writing a script that has to connect a bluetooth device with a 3D application. On my search for a bluetooth module i ran into this: http://www.python.org/download/releases/2.4/notes/ where it says: "The socket module now supports Bluetooth sockets, if the system has &quo

Using Bluetooth Module

2008-07-02 Thread Abhishek Wadhava
Hi..!! I was thinking to perform bluetooth Communication with Python. So can any1 guide me from where to start...i mean any particular module or library for that, any documentations for that..etc etc... -- http://mail.python.org/mailman/listinfo/python-list

Re: bluetooth file transfer in python

2008-02-12 Thread Paul Boddie
On 12 Feb, 10:50, chartsoft <[EMAIL PROTECTED]> wrote: > I am a teacher and need to set up a computer with a bluetooth dongle > to poll for mobile phones with bluetooth switched on in the area then > send them a jpg file. I guess you'd use OBEX to send the file, specifically u

bluetooth file transfer in python

2008-02-12 Thread chartsoft
I am a teacher and need to set up a computer with a bluetooth dongle to poll for mobile phones with bluetooth switched on in the area then send them a jpg file. I understand that python is capeable of this. 1.) is it worth learning python to do this or can someone out there do it for me for a v

Re: finding bluetooth serial port

2007-11-08 Thread Paul Sijben
thanks very much! Grant Edwards wrote: > On 2007-11-07, Paul Sijben <[EMAIL PROTECTED]> wrote: > >> To automate/ease configuration in my app I am trying to find >> out to which serial port a certain bluetooth device is >> connected. With pybluez I can find out whi

Re: finding bluetooth serial port

2007-11-07 Thread Grant Edwards
On 2007-11-07, Paul Sijben <[EMAIL PROTECTED]> wrote: > To automate/ease configuration in my app I am trying to find > out to which serial port a certain bluetooth device is > connected. With pybluez I can find out which bluetooth devices > I have, but it will not tell me the se

finding bluetooth serial port

2007-11-06 Thread Paul Sijben
To automate/ease configuration in my app I am trying to find out to which serial port a certain bluetooth device is connected. With pybluez I can find out which bluetooth devices I have, but it will not tell me the serial port they are mapped to. Is there a way to figure this out from python? (I

Re: how to send files via bluetooth with python to a mobile

2007-07-03 Thread Drex
Hi, I tried the example from the site http://dev.zuckschwerdt.org/openobex/wiki/ObexFtpExampleClientPython but I am getting the following error: /home/daniel/projekty/_moje/python/send_txt_to_mobile.py Traceback (most recent call last): File "/home/daniel/projekty/_moje/python/send_txt_to_mobil

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread Drex
Hello, > > seams thatpythonbindings are already there? > >http://dev.zuckschwerdt.org/openobex/wiki/ObexFtpExampleClientPython > > Cool, didn't find that. thanks, this looks to be what I was looking for! regards dz -- http://mail.python.org/mailman/listinfo/python-list

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread Diez B. Roggisch
morphine schrieb: > Diez B. Roggisch wrote: > >> Wrap this >> >> http://www.zuckschwerdt.org/apidocs/ > > seams that python bindings are already there? > http://dev.zuckschwerdt.org/openobex/wiki/ObexFtpExampleClientPython Cool, didn't find that. diez -- http://mail.python.org/mailman/listinfo

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread morphine
Diez B. Roggisch wrote: > Wrap this > > http://www.zuckschwerdt.org/apidocs/ seams that python bindings are already there? http://dev.zuckschwerdt.org/openobex/wiki/ObexFtpExampleClientPython -- morphine -- http://mail.python.org/mailman/listinfo/python-list

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread Drex
Hello, > > Wrap this > > http://www.zuckschwerdt.org/apidocs/ > > using ctypes. thanks, no idea on how to do it (yet hopefully), but I will try ;) regards dz -- http://mail.python.org/mailman/listinfo/python-list

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread Diez B. Roggisch
for. I need to > have some library on my pc (linux) that would allow me to transfer a > file to a bluetooth mobile phone (the mine doesn't have symbian). I > have some programs that allow to do that like for ex. obex_client but > I would like to write something similar using pytho

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread Drex
would allow me to transfer a file to a bluetooth mobile phone (the mine doesn't have symbian). I have some programs that allow to do that like for ex. obex_client but I would like to write something similar using python. thanks! regards dz -- http://mail.python.org/mailman/listinfo/python-list

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread vedrandekovic
[EMAIL PROTECTED] je napisao/la: > Drex je napisao/la: > > Hi, > > > > I have been looking on the internet for some info about sending files > > from PC to a mobile phone (I have a nokia 6288) but I was not able to > > find anything. > > > > there is a lot of info how to transfer files from a symb

Re: how to send files via bluetooth with python to a mobile

2007-07-01 Thread vedrandekovic
Drex je napisao/la: > Hi, > > I have been looking on the internet for some info about sending files > from PC to a mobile phone (I have a nokia 6288) but I was not able to > find anything. > > there is a lot of info how to transfer files from a symbian phone to a > pc, but nothing about sending th

how to send files via bluetooth with python to a mobile

2007-07-01 Thread Drex
Hi, I have been looking on the internet for some info about sending files from PC to a mobile phone (I have a nokia 6288) but I was not able to find anything. there is a lot of info how to transfer files from a symbian phone to a pc, but nothing about sending them in the oposite direction. would

Re: bluetooth on windows.......

2007-02-19 Thread M�ta-MCI
Hi! >> try to find a PyBluez version already built for your Python 2.5 On the site : http://org.csail.mit.edu/pybluez/release/PyBluez-0.9.1.win32-py2.5.exe -- http://mail.python.org/mailman/listinfo/python-list

Re: bluetooth on windows.......

2007-02-18 Thread Gabriel Genellina
En Mon, 19 Feb 2007 03:04:33 -0300, srj <[EMAIL PROTECTED]> escribió: > i've been trying to access Bluetooth via python in windows Xp. > py bluez for windows required something called _msbt. > i'm running python 2.5. some problem with vb 7.1 compatibility. > > what

bluetooth on windows.......

2007-02-18 Thread srj
hi. i've been trying to access Bluetooth via python in windows Xp. py bluez for windows required something called _msbt. i'm running python 2.5. some problem with vb 7.1 compatibility. what do i do to get bluetooth up and running on Xp? -- http://mail.python.org/mailman/listinfo/python-list

pc 2 mobile via bluetooth

2006-05-25 Thread Yasmeen Alkadi
hello :)   could some1 help me plzzz is there a python script to connect my windows pc with my s60 mobile via bluetooth on both so i could send text files from my pc and recivee them on my phone   thank u so much . . How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call

Re: Bluetooth

2005-09-24 Thread Paul Boddie
Tor Erik Sønvisen wrote: > > I've been doing some research since my first post and now I'm really > confused. I'm programming in xp, and found some c++ code out of this world > that supposidly should list all available services to a given bluetooth > device. This c

Re: Bluetooth

2005-09-23 Thread Tor Erik S�nvisen
Okei I've been doing some research since my first post and now I'm really confused. I'm programming in xp, and found some c++ code out of this world that supposidly should list all available services to a given bluetooth device. This code however where only working with ce

Re: Bluetooth

2005-09-23 Thread Paul Boddie
Tor Erik Sønvisen wrote: > I'm making a server-side solution in Python and need to be able to > communicate through bluetooth. Is there any bluetooth-packages out there for > python? At the lowest level, you should be able to create sockets for Bluetooth communications (see the s

Bluetooth

2005-09-23 Thread Tor Erik S�nvisen
Hi I'm making a server-side solution in Python and need to be able to communicate through bluetooth. Is there any bluetooth-packages out there for python? regards tores -- http://mail.python.org/mailman/listinfo/python-list

link to the HP 3115 iPAQ - list of features for info -- $350 w/Bluetooth built-in

2005-06-02 Thread val
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=5778810554&ssPageName=MER C_VIC_ReBay_Pr4_PcY_BIN -- http://mail.python.org/mailman/listinfo/python-list