# IMPORTANT: if you get connection refused (111)
# Check the bluetooth service
sudo systemctl status bluetooth
# Start bluetooth if it was not active
sudo systemctl restart bluetooth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hex2ascii() { | |
| tr -d "'" | xxd -r -p; printf "\n" | |
| } | |
| gattval() { | |
| cut -d":" -f2 | tr -d "'" | xxd -r -p; printf "\n" | |
| } | |
| gatt_read() { | |
| if [ $# -lt 1 ]; then |