>>> from subprocess import Popen, PIPE >>> print Popen(["ls", "/var/lib/bluetooth"], stdout=PIPE).communicate()[0]
right now I'm trying to get the own bluetooth mac on the n810 via python and console. One chance would be the content of /var/lib/bluetooth
Solution:
Last edited by TheTall1; 2010-03-08 at 08:09. Reason: Lets present the solution