From 62427152eb368a6ac7031e402f97df33c4eb07de Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Tue, 16 Oct 2018 08:54:43 -0700 Subject: [PATCH] revert BLE defaults --- libs/core/pxt.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/core/pxt.json b/libs/core/pxt.json index 1fa34a78..6a326755 100644 --- a/libs/core/pxt.json +++ b/libs/core/pxt.json @@ -57,9 +57,9 @@ "device_info_service": 1, "eddystone_url": 1, "eddystone_uid": 1, - "open": 1, + "open": 0, "pairing_mode": 1, - "whitelist": 0, + "whitelist": 1, "security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM", "partial_flashing": 1 } @@ -67,24 +67,24 @@ }, "userConfigs": [ { - "description": "No Pairing Required (default): Anyone can connect via Bluetooth.", + "description": "No Pairing Required: Anyone can connect via Bluetooth.", "config": { "microbit-dal": { "bluetooth": { - "open": null, - "whitelist": null, + "open": 1, + "whitelist": 0, "security_level": null } } } }, { - "description": "JustWorks pairing: Pairing is automatic once the pairing is initiated.", + "description": "JustWorks pairing (default): Pairing is automatic once the pairing is initiated.", "config": { "microbit-dal": { "bluetooth": { - "open": 0, - "whitelist": 1, + "open": null, + "whitelist": null, "security_level": null } }