Skip to content

Commit

Permalink
chore: remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
datagutt committed Sep 7, 2024
1 parent 6f305e7 commit 1f71152
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-osmo",
"version": "1.0.1",
"version": "1.0.2",
"description": "Typescript library for controlling DJI Osmo Action 4 and Pocket 3 using BLE (Bluetooth Low Energy)",
"type": "module",
"source": "./src/index.ts",
Expand Down
4 changes: 0 additions & 4 deletions src/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,6 @@ export class DjiDevice {
console.error('dji-device: Characteristic read error', error);
return;
}
console.info(
`uffs ${data.toString('hex')} from characteristic ${characteristic.uuid}`,
data,
);
this.onCharacteristicValueChanged(characteristic, data);
});
await characteristic.notifyAsync(true);
Expand Down

0 comments on commit 1f71152

Please sign in to comment.