Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/BluetoothDeviceDriver/BluetoothDeviceDriver.ino
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ void setup()
BLE.addService(audioService);
BLE.advertise();

// Print device address
Serial.print("Device Address: ");
Serial.println(BLE.address());

Serial.println("BLE Audio Recorder");
}

Expand Down Expand Up @@ -123,4 +127,4 @@ static void audio_rec_callback(uint16_t *buf, uint32_t buf_len)
recording_idx = (recording_idx + 1) % BUFFER_SIZE;
}
}
}
}