Python Forum
RPi and smartphone Bluetooth communication
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
RPi and smartphone Bluetooth communication
#1
Hi all. I'm complete newbie on Python. I'd like to write code to connect and communicate an RPi ZeroW (with Camera) with an Android smartphone (with App Inventor app) via Bluetooth. Currently my code is very simple but seems to work:
import bluetooth, time
from subprocess import Popen, PIPE, run

server_sock=bluetooth.BluetoothSocket(bluetooth.RFCOMM)
port = 1
server_sock.bind(("",port))
server_sock.listen(1)
client_sock,address = server_sock.accept()

print ("Connected to:", address)
while True:
    recvdata = client_sock.recv(1024)
    stringdata = recvdata.decode('utf-8')
    print ("Received data:", stringdata)
    # client_sock.send("data from RPi zero\n")

    if (stringdata == "ipaddress"):
        command = ['hostname', '-I']
        result = run(command, stdout=PIPE, stderr=PIPE, text=True)
        print(result.returncode, result.stdout, result.stderr)
        client_sock.send("RPi IP address: ")
        client_sock.send(result.stdout)
The App Inventor app sends a string and listen for RPi feedback. I started by trying to send requests for line commands execution, like the 'hostname -I' as in my code above. It works fine, as soon as I run commands correctly written but if the command is an invalid command string the program exits with:
  File "/usr/lib/python3.11/subprocess.py", line 548, in run
    with Popen(*popenargs, **kwargs) as process:
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/subprocess.py", line 1024, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "/usr/lib/python3.11/subprocess.py", line 1901, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'hostnam'
In this case the BT connection gets lost.
Is there a way to catch the FileNotFoundError, then client_sock.send a message like 'command not found' and, mainly, keep the python script alive?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Read data via bluetooth frohr 9 7,657 Jul-10-2022, 09:51 AM
Last Post: frohr
  Connect to HC-05 Bluetooth (NOT BLE) korenron 0 2,121 Jun-26-2022, 09:06 AM
Last Post: korenron
  Read buffer from bluetooth frohr 2 3,192 Jun-01-2022, 01:31 PM
Last Post: frohr
  Scan for Bluetooth device korenron 0 3,449 Jan-10-2022, 01:06 PM
Last Post: korenron
  Sending string commands from Python to a bluetooth device Rovelin 13 15,442 Aug-31-2021, 06:40 PM
Last Post: deanhystad
  ModuleNotFoundError: No module named 'bluetooth' Error Rovelin 4 14,747 Aug-31-2021, 04:04 PM
Last Post: Rovelin
  Bluetooth send message after connecting? korenron 2 3,503 Apr-26-2021, 05:50 AM
Last Post: korenron
  Bluetooth problem Lad 0 2,414 Sep-24-2020, 07:26 PM
Last Post: Lad
  bluetooth device inquiry anne 0 2,908 Aug-01-2020, 12:24 AM
Last Post: anne
  Reading Smartphone Battery Level via Bluetooth maxwell 1 2,949 Jun-17-2020, 12:48 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020