Bluetooth
Namn och kodpunkt för ikoner från Font Awesome 4.7.0
(den sista versionen som var helt gratis)
- fa-bluetooth

- fa-bluetooth-b

Specialtecken
- ᛒ
- ᚼ
Förkortningar
- BLE - Bluetooth Low Energy (Bluetooth Smart)
- SIG - Bluetooth Special Interest Group
- GATT - Generic Attributes
Sociala medier
Webbplats
Bluetooth.comTillgängliga enheter
blued
Mac-adresser
networksetup -listallhardwareports
Visa status med UNIX
system_profiler SPBluetoothDataType
Visa status med UNIX
defaults read /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState
Sätt på på Mac med UNIX
sudo defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 1
Stäng av på Mac med UNIX
sudo defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 0
Lista enheter på Mac med UNIX
system_profiler SPBluetoothDataType
system_profiler SPBluetoothDataType | sed -n "/Apple Bluetooth Software Version\:/,/Manufacturer\:/p" | egrep -o '([[:xdigit:]]{1,2}-){5}[[:xdigit:]]{1,2}'
system_profiler SPBluetoothDataType | sed -n "/Apple Bluetooth Software Version\:/,/Manufacturer\:/p" | tr -s "[\n]" "[ ]" | sed "s:.*Address\: ::g" | sed "s: Manufacturer\:.*::g" | grep "[[:graph:]]"
Visa enheter med Javascript
window.onclick = function() {
navigator.bluetooth.requestDevice({
acceptAllDevices: true,
optionalServices: ['battery_service']
})
.then(device => {
alert(device.name);
console.log(JSON.stringify(device));
return device.gatt.connect();
})
.catch(error => { console.log(error); });
}