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?
--
https://mail.python.org/mailman/listinfo/python-list
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
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
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
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
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:
> Is the following more like how you want it?
>
>
>
> data = ""
>
> try:
>
> while True:
>
> try:
>
> more = client_socket.recv(9)
>
> except bluetooth.BluetoothError, b:
>
>
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
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:
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
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
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
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.
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:
>
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
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
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
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/
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
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
?
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
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)
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
[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
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
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
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
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
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
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! Messengers low PC-to-Phone call
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
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
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
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
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
51 matches
Mail list logo