forked from microsoft/pxt-calliope
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dd8081
commit ebbf816
Showing
26 changed files
with
173 additions
and
34 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
libs/bluetooth-android/_locales/bluetooth-android-jsdoc-strings.json
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
libs/bluetooth-android/_locales/bluetooth-android-settings-jsdoc-strings.json
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
libs/bluetooth-android/_locales/bluetooth-android-settings-strings.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
libs/bluetooth-disabled/_locales/ble-disabled-jsdoc-strings.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,13 @@ | |
"enabled": 0 | ||
} | ||
} | ||
}, | ||
"optionalConfig": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"enabled": 0 | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Bluetooth settings for Android and Calliope mini 1 and 2 | ||
|
||
This extension set the BLE settings to make sure they work for iOS and Calliope mini 1 and 2: | ||
|
||
``` | ||
"bluetooth": { | ||
"open": 0, | ||
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM", | ||
"whitelist": 1 | ||
} | ||
``` | ||
|
||
These settings are the default for Calliope mini 1 and 2, so this extension is only required to be included for Calliope mini 1 and 2 Projects where "bluetooth-pairing" was loaded before. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "bluetooth-no-pairing", | ||
"description": "Bluetooth settings for iOS and Calliope mini 1 and 2.", | ||
"dependencies": { | ||
"core": "file:../core" | ||
}, | ||
"files": [ | ||
"README.md" | ||
], | ||
"public": true, | ||
"searchOnly": true, | ||
"weight": 100, | ||
"icon": "./static/packages/bluetooth/icon.png", | ||
"yotta": { | ||
"config": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"open": 1, | ||
"security_level": null, | ||
"whitelist": 0 | ||
} | ||
} | ||
}, | ||
"userConfigs": [ | ||
{ | ||
"description": "Bluetooth: No pairing required | Calliope mini 1 and 2 (iOS)", | ||
"config": { | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Localization strings for Stable version | ||
|
||
This extensions includes strings, that are changed or deleted in newer version than the current release. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"name": "localization-strings-stable", | ||
"description": "Adds strings for translations.", | ||
"dependencies": { | ||
"core": "file:../core" | ||
}, | ||
"files": [ | ||
"README.md" | ||
], | ||
"public": true, | ||
"weight": 0, | ||
"searchOnly": true, | ||
"yotta": { | ||
"optionalConfig": { | ||
}, | ||
"userConfigs": [ | ||
{ | ||
"description": "Only load Bluetooth while Paring-Mode is activated (holding A+B and briefly the Reset button)", | ||
"config": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"enabled": 0 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"description": "Disable partial flashing (increases available RAM)", | ||
"config": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"partial_flashing": 0 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"description": "Bluetooth: No pairing required", | ||
"config": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"open": 1, | ||
"security_level": null, | ||
"whitelist": 0 | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"description": "Bluetooth: Pairing required", | ||
"config": { | ||
"microbit-dal": { | ||
"bluetooth": { | ||
"open": 0, | ||
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM", | ||
"whitelist": 1 | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters