From 0b310f7d6e3f78f9b2d36b7c326ac64c626d2bf9 Mon Sep 17 00:00:00 2001 From: wangyijenny <52047217+wangyijenny@users.noreply.github.com> Date: Wed, 3 Jul 2024 11:23:51 -0400 Subject: [PATCH] added v0.1 to the bluetooth module name If you have multiple bluetooth devices paired with the same name, the quest app only connects to the first one on the list. Adding the version number lets us keep multiple versions of the board paired to the headset for debugging and demo purposed. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 635e06e..6635410 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,7 +43,7 @@ void SetupBluetoothModule(){ Serial.print("AT+UART=9600,0,0\r\n"); // set baud rate to 9600 delay(100); - Serial.print("AT+NAME=blockPartyBT\r\n"); // set name to blockPartyBT + Serial.print("AT+NAME=blockPartyBT-v01\r\n"); // set name to blockPartyBT-v0.1 delay(100); Serial.print("AT+PSWD=1234\r\n"); // set password to 1234