Skip to content

v3.4.3

Choose a tag to compare

@JovannMC JovannMC released this 16 Jul 07:59
6749e44

The v3.4.3 release of the HaritoraX-Interpreter package is now out to coincide with SlimeTora v1.5.2. This is a bugfix update that fixes additional trackers not working on HaritoraX Wired, and MAYBE auto-detection??

Changelogs

  • Fixed wired trackers hips/elbows not showing up
  • Fix wired auto detection (??????)
  • Package updates
  • help

Installation

npm install haritorax-interpreter

Documentation

Will write actual documentation at some point, for now refer to the source code, examples, and JSDoc comments. You may also see how it's used in SlimeTora!

okay let's be real, that's not coming out lmao

Supported devices

Device Supported Elbow/Hip support Additional trackers Extensions
HaritoraX 2 Y Y Y Y
HaritoraX Wireless Y Y Y N
HaritoraX 1.1B Y Y N N
HaritoraX 1.1 Y Y N N
HaritoraX 1.0 Y Y N N
Haritora ? ? N N
Communication mode Supported
Bluetooth (Low Energy) Y
Bluetooth Classic (serial) Y
GX6 Communication Dongle Y
GX2 Communication Dongle Y

Example

import { HaritoraX } from "haritorax-interpreter";

// connect to haritorax wireless, enable debug logs, allow printing of processIMUData() logs (lots of spam), print raw unprocessed data (more spam!)
let device = new HaritoraX("wireless", true, true, true);
// start connecting to dongles via GX dongles (COM connection), with the ports COM4, COM5, COM6, and COM7
device.startConnection("com", ["COM4", "COM5", "COM6", "COM7"]);

device.on("imu", (trackerName, rotation, gravity, ankle) => {
    // IMU data received, do stuff
});

setTimeout(() => {
    // apply the following settings to the rightAnkle tracker:
    // sensor mode: 1 (magnetometer enabled)
    // posture data transfer rate: 100FPS
    // sensor auto correction mode: accelerometer and gyroscope
    // ankle motion detection: enabled
    device.setTrackerSettings("rightAnkle", 1, 100, ['accel', 'gyro'], true);
}, 2000)

setTimeout(() => {
    device.stopConnection("com");
}, 10000)

Full Changelog: v3.4.2...v3.4.3