Skip to content

Tag: android

Communicating via Bluetooth serial with Python

How do you process and receive serial data via Bluetooth and Python? I’m trying to make a simple Python server that access data via Bluetooth as explained here. My server.py file, which sends a random number when sent the text “temp”, is: When I first ran this, I was getting the error: which…

Socket Programming with Python server and Android client

I want to setup a socket interface. PC side runs a very simple socket server written in Python to test the connection: An Android client application will connect to PC: However, I cannot establish a connection between PC and Android device. Any idea to fix this? Answer As you haven’t detailed if you&#82…

Is there any python bindings for android developers?

I am a python learner; would like to develop few applications in Android platform. Is there any Python bindings available for developing Android apps ? Also I would like to know, Using python binding for development will make any performance overhead compared to java ? Answer You’ll probably want to hav…