Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix: Event name is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Jul 16, 2024
1 parent 3760d73 commit 8342466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/bluetooth/bluetooth.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,12 +371,12 @@ class AXSBluetooth {
}
}

updateCharacteristicValue(characteristicUUID, value) {
updateCharacteristicValue(characteristicUUID, value) {
console.log(
"AXSBluetooth:updateCharacteristicValue ",
characteristicUUID,
" ",
eventName
value
);
const bytes = new Uint8Array(value);
console.log("Bytes : ", bytes);
Expand Down

0 comments on commit 8342466

Please sign in to comment.