Skip to content

Commit

Permalink
v1.7.4
Browse files Browse the repository at this point in the history
+ Allow toggling of processIMUData() logs (useful to prevent spam from IMU processing while debugging anything else)
  + Will also stop me from accidentally pushing updates with the debugging commented out :p
+ Fix mag status spam
  • Loading branch information
JovannMC committed Apr 21, 2024
1 parent c5e82ae commit 8136130
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A node.js package that allows you to communicate and interact with the HaritoraX FBT trackers to interpret the data how you want it. No HaritoraConfigurator software needed!

Check out the Haritora-GX6 proof-of-concept repository here: https://github.com/JovannMC/haritora-gx6-poc
Check out the Haritora-GX(6/2) proof-of-concept repository here: https://github.com/JovannMC/haritora-gx-poc

## Installation

Expand Down Expand Up @@ -34,7 +34,7 @@ Will write actual documentation at some point, for now refer to the source code,
```js
import { HaritoraXWireless } from "haritorax-interpreter";

let device = new HaritoraXWireless(2); // enable debug mode w/ function & line info
let device = new HaritoraXWireless(2, true); // enable debug mode w/ function & line info, allow printing of processIMUData() logs (lots of spam!)
device.startConnection("gx", ["COM4", "COM5", "COM6", "COM7"]); // start connecting to dongles via GX dongles, with the ports COM4, COM5, COM6, and COM7

device.on("imu", (trackerName, rotation, gravity, ankle) => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haritorax-interpreter",
"version": "1.7.3",
"version": "1.7.4",
"homepage": "https://github.com/JovannMC/haritorax-interpreter",
"repository": "https://github.com/JovannMC/haritorax-interpreter",
"bugs": {
Expand Down

0 comments on commit 8136130

Please sign in to comment.