2016-03-25 16:47:20 -07:00
# tell remote control to
Control the presentation of media content available on a remote device using the `tell remote control` to function.
2016-06-20 22:06:19 -07:00
### ~hint
2017-03-27 15:43:37 -07:00
![](/static/bluetooth/Bluetooth_SIG.png)
2016-03-25 16:47:20 -07:00
2017-03-27 15:43: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-03-25 16:47:20 -07:00
2016-06-20 22:06:19 -07:00
### ~
2016-03-25 16:47:20 -07:00
2017-03-27 15:43:37 -07:00
2016-06-20 22:06:19 -07:00
```sig
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.play)
2016-03-25 16:47:20 -07:00
```
### Parameters
* event - an event identifier
### Event values
* play
* stop
* pause
* forward
* rewind
* volume up
* volume down
* previous track
* next track
### Examples
To tell the connected device to start playing:
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.play)
2016-03-25 16:47:20 -07:00
```
To tell the connected device to stop playing
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.stop)
2016-03-25 16:47:20 -07:00
```
To tell the connected device to go to next track
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.nextTrack)
2016-03-25 16:47:20 -07:00
```
To tell the connected device to go to previous track
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.previousTrack)
2016-03-25 16:47:20 -07:00
```
To tell the connected device to go forward
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.forward)
2016-03-25 16:47:20 -07:00
```
To tell the connected device to rewind
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.rewind)
2016-03-25 16:47:20 -07:00
```
To tell the connected device volume up
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.volumeUp)
2016-03-25 16:47:20 -07:00
```
To tell the connected device volume down
2016-06-20 22:06:19 -07:00
```blocks
2017-03-15 15:31:34 -07:00
devices.tellRemoteControlTo(MesRemoteControlEvent.volumeDown)
2016-03-25 16:47:20 -07:00
```
### See also
2016-06-19 05:28:46 -07:00
[tell camera to ](/reference/devices/tell-camera-to ), [raise alert to ](/reference/devices/raise-alert-to )
2016-03-25 16:47:20 -07:00
2016-06-20 22:06:19 -07:00
```package
2016-10-22 21:29:31 -07:00
devices
2016-06-20 22:06:19 -07:00
```