2016-06-21 09:46:13 -07:00
# Bluetooth
2016-06-24 09:02:14 -07:00
Support for additional Bluetooth services.
2016-10-18 21:36:42 -07:00
### ~hint
![](/static/bluetooth/Bluetooth_SIG.png)
2016-11-01 17:44:37 -07:00
For another device like a smartphone to use any of the Bluetooth "services" which the @boardname @ has, it must first be [paired with the @boardname@ ](/reference/bluetooth/bluetooth-pairing ). Once paired, the other device may connect to the @boardname @ and exchange data relating to many of the @boardname @'s features.
2016-10-18 21:36:42 -07:00
### ~
2016-06-21 09:46:13 -07:00
```cards
bluetooth.startAccelerometerService();
bluetooth.startButtonService();
bluetooth.startIOPinService();
bluetooth.startLEDService();
bluetooth.startMagnetometerService();
bluetooth.startTemperatureService();
2016-10-18 21:36:42 -07:00
bluetooth.onBluetoothConnected(() => {});
bluetooth.onBluetoothDisconnected(() => {});
2016-12-07 09:05:03 -08:00
bluetooth.setTransmitPower(7);
2016-10-18 21:36:42 -07:00
```
## UART
```cards
bluetooth.startUartService();
bluetooth.uartReadUntil("");
bluetooth.uartWriteString("");
bluetooth.uartWriteNumber(0);
bluetooth.uartWriteValue("", 0);
2017-04-28 01:05:04 -07:00
bluetooth.onUartDataReceived(",", () => {})
2016-06-21 09:46:13 -07:00
```
2016-11-30 04:06:15 -08:00
## Eddystone
```cards
2016-12-23 08:58:38 -08:00
bluetooth.advertiseUid(42, 1, 7, true);
2017-07-24 13:39:27 -07:00
bluetooth.advertiseUrl("https://makecode.microbit.org/", 7, true);
2016-11-30 04:06:15 -08:00
bluetooth.stopAdvertising();
```
2016-10-18 21:36:42 -07:00
### Advanced
2016-11-01 17:44:37 -07:00
For more advanced information on the @boardname @ Bluetooth UART service including information on using a smartphone, see the [Lancaster University @boardname@ runtime technical documentation ](http://lancaster-university.github.io/microbit-docs/ble/uart-service/ )
2016-10-18 21:36:42 -07:00
2016-08-08 13:08:15 -07:00
### See Also
2016-10-18 21:36:42 -07:00
[startAccelerometerService ](/reference/bluetooth/start-accelerometer-service ), [startButtonService ](/reference/bluetooth/start-button-service ), [startIOPinService ](/reference/bluetooth/start-io-pin-service ), [startLEDService ](/reference/bluetooth/start-led-service ), [startMagnetometerService ](/reference/bluetooth/start-magnetometer-service ), [startTemperatureService ](/reference/bluetooth/start-temperature-service ),
[startUartService ](/reference/bluetooth/start-uart-service ),
[uartReadUntil ](/reference/bluetooth/uart-read-until ),
[uartWriteString ](/reference/bluetooth/uart-write-string ),
[uartWriteNumber ](/reference/bluetooth/uart-write-number ),
[uartWriteValue ](/reference/bluetooth/uart-write-value ),
2016-11-30 04:06:15 -08:00
[onBluetoothConnected ](/reference/bluetooth/on-bluetooth-connected ),
[onBluetoothDisconnected ](/reference/bluetooth/on-bluetooth-disconnected ),
[advertiseUrl ](/reference/bluetooth/advertise-url ),
[stopAdvertising ](/reference/bluetooth/stop-advertising )
2017-03-15 15:54:40 -07:00
```package
bluetooth
```