SwitchBot is a smart IoT robot to mechanically control all your switches and buttons. You can control the bot by your smartphone app (iOS or Android, SwitchLink, or other platform based on our open APIs.
This project aims to provide a super light-weight solution to control your SwitchBot on Raspberry Pi/OpenWRT or any other Linux based board.
The python-host distribution is supported and tested on Python 2.7.
You will need:
sudo apt-get update
sudo apt-get install python-pexpect
sudo apt-get install libusb-dev libdbus-1-dev libglib2.0-dev
sudo apt-get install libudev-dev libical-dev libreadline-dev
sudo pip install bluepy
git clone https://github.com/OpenWonderLabs/python-host.git
cd python-host
You can use in two ways:
sudo python switchbot.py
Follow the instruction, input the device number for SwitchBot you want to control.
sudo python switchbot.py [mac_addr action_cmd]
action_cmd :Press, Turn On, Turn Off.
eg: sudo python switchbot.py xx:xx:xx:xx:xx:xx Press
The original switchbot.py
script will work only on Python 2 and it relies on the old Bluez utils (like hciconfig
and hcitool
) that have been deprecated in the latest Bluez releases.
If you want to use the script on Python 3 or on a Linux distro that no longer ships Bluez with the old tools, use the switchbot_py3.py script instead.
To install the required dependencies on Debian 11 "Bullseye", Raspberry Pi OS or Ubuntu 21.10 or later:
sudo apt install python3-bluez
On older versions of Ubuntu/Debian/Raspbian:
sudo apt-get install python3-pip
sudo apt-get install libbluetooth-dev
pip3 install pybluez
sudo apt-get install libboost-python-dev
sudo apt-get install libboost-thread-dev
pip3 install gattlib
If for some reason the gattlib installation fails:
sudo apt-get install pkg-config python3-dev
sudo apt-get install libglib2.0-dev
pip3 download gattlib
tar xvzf ./gattlib-0.20150805.tar.gz
cd gattlib-0.20150805/
sed -ie 's/boost_python-py34/boost_python-py36/' setup.py # "py36" might be "py37" (for example). Check "python3 --version"
pip3 install .
Type python3 switchbot_py3.py -h/--help
for usage tips.
eg: sudo python3 switchbot_py3.py -d xx:xx:xx:xx:xx:xx -c close
Enjoy :)