Configure the Wifi network on a Raspberry Pi via Bluetooth
The free iOS app BTBerryWifi (on AppStore) connects to a RPi via bluetooth and displays available wifi networks within range of the RPi.
You select the network you need, enter the password - and send the information to the RPi, which connects to that wifi network, and reports back with success (or failure if the password is incorrect). You can also tell the RPi to connect to a previously known network (without entering the password again).
For the app to work, the Python code in btwifiset.py - must be installed on the RPi. The installer provided here sets up btwifiset.py to run automatically when the RPi boots up.
So if your headless RPi might need to connect to a new wifi at some point, install btwifiset.py on the RPi now. Then, when you need it, you simply turn on (or reboot) the RPi, fire up the iOS BTBerryWifi app or your iPhone or iPad, and set the wifi credentials for your Pi.
The python code btwifiset.py, associated python modules and services must be installed on the Raspberry Pi before running the iPhone app
First, please ensure that your RPi is up to date by running these commands:
sudo apt update
sudo apt upgrade --yes
sudo reboot
Then, Run the installer script with the curl command below, to set up btwifiset on your Pi.
curl -L https://raw.githubusercontent.com/nksan/Rpi-SetWiFi-viaBluetooth/main/btwifisetInstall.sh | bash
What the installer does:
update_config=1
if needed/usr/share/zoneinfo/iso3166.tab
for a complete list of country codesNote: btwifiset service should start immediately after installation, and on every RPi reboot. By default, it is setup to run for 15 minutes (settable timeout) and then shut down. On some systems, btwifiset service will not start until reboot. You can check if btwifiset has started after installation with the following command. Look for the line that says "Active: active (running)" - if it's not there - reboot.
systemctl status btwifiset
Look for the line that says "Active: active (running)" - if it's not there - reboot.
sdm, a tool you can use to easily and quickly build fully customized, ready-to-go RasPiOS systems, includes a plugin for btwifiset.
sdm
has a broad set of features, but it's also very easy to get started with sdm.
Install sdm and then use the Official Getting Started with sdm Script to jump-start your sdm usage and easily burn new disks with btwifiset installed.
The blog contains detailed step by step instructions and explanations of the installation.
Useful if you want to control/understand what happens on your Raspberry Pi, learn more about package installation, bluetooth service or how to create a service of your own.
TL;DR: just the steps - no explanation: see last section here.
Raspberry Pi Foundation released the latest OS "Bookworm" - and for the first time included Network Manager which is turned on by default. Before that, RPi OSes were using wpa_supplicant and the associated wpa_supplicant.conf file to set SSID/Password for wifi - which is what version 1 of btwifiset.py used.
Network Manager uses wpa_supplicant behind the scenes - but most importantly blocks direct access to wpa_supplicant by other processes (such as btwifiset.py code). If you installed version 1 on a "Bookworm" RPi, the BTBerryWifi app would still connect to the RPI via bluetooth and display the list of wifi Networks. But once you selected the network and entered the password, the RPi would never connect.
Version 2 detects whether your OS is using Network Manager or not - and uses the appropriate means to connect to the selected wifi network. (This means that version 2 will still work on systems that do not have Network Manager installed - such as Raspberry Pi Bullseye OS).
Because Network Manager is now supported, other OSes such as Ubuntu or Armbian should also work. (For example, it was tested on a Banana Pi using Armbian)
The only requirement is that the OS names its bluetooth adapted "hci0" and its wifi adapter "wlan0". You can check the wifi adapter name by running:
ls /sys/class/ieee80211/*/device/net/
And check the bluetooth adapter with:
ls /sys/class/bluetooth
Newer OS like Raspberry PI bookworm install all necessary packages (with correct version) via apt.
If you are on an older OS, or you came here to upgrade from version 1, the dbus and cryptography packages are either not available via apt, or are offered with older versions. In this case the bash script provided installs these packages using Python Pip3, into a virtual environment (venv) created under the /usr/local/btwifiset directory. In this case the ExecStart line in the btwifiset service is modified to start with /venv/bin.python3.
Extra features are available to supporters of this work:
The working sub-directory in this repo contains the python files where the development occurs. You can clone these if you want to modify the code. If you do, run the file btwifi.py with python (it imports the rest).
The file btwifiset.py installed by the installer is simply the combination of these three files with some small edits.
There is no formal versioning of the btwifiset.py - other than major versions (this is version 2).
Instead - the date at which the latest btwifiset.py was modified and published is in the python code, and is logged. See class/method BLEManager.start() to view the current version date.
The version 1 of btwifiset.py is available in branch "version1". Note that the installer in that case is also version 1 - and may not work correctly with Bookworm or later.
I'm working on it... might be a few months yet...
I have tested the bluetooth code (Kotlin). I have yet to write the UI for it.
Here are the steps to install manually:
... coming soon ...
( meanwhile, all the details here )