s60 python does not appear to advertise under the PublicBrowseGroup, which is what most SDP browsing applications look for. Instruct your SDP searching/browsing application to search for either the...
Type: Posts; User: relbs; Keyword(s):
s60 python does not appear to advertise under the PublicBrowseGroup, which is what most SDP browsing applications look for. Instruct your SDP searching/browsing application to search for either the...
PyBluez is an effort to create python wrappers around system Bluetooth
resources to allow Python developers to easily and quickly create
Bluetooth applications.
New in this release is support...
this was the problem (normal string pathname instead of unicode), thanks!
that's what I originally thought, but when I looked through the file system with the filebrowser, and with fexplorer, the file didn't show up. I also tried blindly deleting it with os.unlink(), but...
Can someone explain to me why this doesn't work?
import e32
def task1():
print "[task1] waiting"
lock.wait()
print "[task1] revived"
Hello,
I used e32db.Dbms to create a database and want to programatically delete the entire database. I didn't see how to do it in the API documentation. Is this possible? Thanks,
Albert
Hello,
I want to make a standalone python app, but want to embed the python installer in the .SIS file. I tried adding this line to my .pkg file:
@"PythonForSeries60.SIS",(0x10201510)
but...
Can anyone explain to me why executing this snippet of code:
import sys, e32
for i in range(5):
e32.ao_sleep(0, lambda: sys.stdout.write("%d\n" % i))
e32.ao_sleep(4)
wow, I feel silly. Thank you for pointing that out to me. Allow me to post code that finally (!!) works.
from socket import *
s = socket(AF_BT, SOCK_STREAM)
p =...
I have discovered the reason incoming connections are not accepted is the security settings are too high by default. If I write a python extension that lowers or disables security on the bound...
See if this helps:
http://org.csail.mit.edu/mode/index.php/BT_console_on_Windows
Hello,
thanks for the reply. I am still unable to get my phone (7610) to accept incoming connections from either a PC or another phone (also 7610). I tried using exactly the code above on one...
are there any examples of accepting incoming bluetooth connections in python? All the bluetooth examples we've seen are of phones making
outgoing connections in python. The following code doesn't...
Hi all,
I'm sure this is a really simple problem, but I can't figure it out.
I just want to build the c stdlib examples, as mentioned here -
...