Merge branch 'master' into tutorialmode

This commit is contained in:
Sam El-Husseini
2017-01-05 08:19:39 -08:00
24 changed files with 184 additions and 88 deletions

View File

@ -18,7 +18,7 @@ Read more at https://lancaster-university.github.io/microbit-docs/ble/eddystone/
## ~
```sig
bluetooth.advertiseUrl("https://pxt.microbit.org/", true);
bluetooth.advertiseUrl("https://pxt.microbit.org/", 7, true);
```
### Parameters
@ -30,7 +30,7 @@ bluetooth.advertiseUrl("https://pxt.microbit.org/", true);
### Example: Broadcast a secret code
```blocks
bluetooth.advertiseUrl("https://pxt.io?secret=42", true);
bluetooth.advertiseUrl("https://pxt.io?secret=42", 7, true);
```
## See Also