pxt-calliope/docs/reference/devices/on-notified.md

35 lines
745 B
Markdown
Raw Normal View History

# On Notified
2016-08-10 22:10:40 +02:00
Register code to run when the signal strength of the paired device changes.
## ~hint
2016-08-10 22:10:40 +02:00
**App required** You must use one of the [micro:bit apps](https://microbit.org/guide/mobile/) to use this functionality.
2016-08-10 22:10:40 +02:00
## ~
2016-08-10 22:10:40 +02:00
```sig
devices.onNotified(MesDeviceInfo.IncomingCall, () => {})
```
## Parameters
2016-08-10 22:10:40 +02:00
* ``body``: code to run when the signal strength changes.
## Examples
2016-08-10 22:10:40 +02:00
Display the signal strength on screen:
```blocks
devices.onNotified(MesDeviceInfo.IncomingCall, () => {
basic.showString("RING RING")
})
```
## See Also
2016-08-10 22:10:40 +02:00
[tell remote control to](/reference/devices/tell-remote-control-to), [raise alert to](/reference/devices/raise-alert-to), [signal strength](/reference/devices/signal-strength)
```package
devices
2016-08-10 22:10:40 +02:00
```