-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the AbsoluteLocation wiki!
Here is the complete GitHub Wiki documentation written entirely in English. You can copy and paste this Markdown directly into your repository's Wiki section.
Welcome to the official documentation for the AbsoluteLocation project!
AbsoluteLocation is a real-time full-body and motion tracking system built using ESP32-C3 microcontrollers and BNO055 Inertial Measurement Units (IMUs). It captures, processes, and streams high-precision spatial orientation telemetry for 3D application visualization and tracking workflows.
Real-Time Telemetry Processing: High-frequency orientation tracking using quaternions and Euler angles from onboard BNO055 sensor fusion.
Dual Communication Modes: Low-latency wireless streaming via UDP/WebSockets over Wi-Fi and direct wired streaming via Serial/UART.
Modular Multi-Node Architecture: Scalable node setup allowing multiple tracking points across limbs and body segments.
Optimized Firmware: Built in C++ using PlatformIO for minimal system overhead, fast boot times, and reliable data delivery.
The architecture consists of three core components:
-
Hardware Nodes:
ESP32-C3 primary MCU handling data polling and network transmission.
BNO055 9-DOF orientation sensor running hardware-level sensor fusion.
TCA9548A I2C Multiplexer (optional) for running multiple sensor chains on a single controller bus.
-
Firmware Layer:
Sensor initialization, register polling, and automated calibration handling.
Compact serialization of quaternion and acceleration telemetry packets.
-
Host Application / Receiver:
UDP server or Serial listener decoding packet payloads.
3D spatial positioning input for game engines (Unity/Unreal) or VR integration runtimes (OpenVR/VRChat drivers).
ESP32-C3 board (e.g., ESP32-C3 SuperMini)
BNO055 IMU module
Prototyping wire (AWG 30 recommended) or perfboard
Power supply (Li-Po battery circuit or USB-C connector)
Install Visual Studio Code.
Install the PlatformIO IDE extension.
-
Clone the target repository:
Bashgit clone https://github.com/Perry1231/AbsoluteLocation.git
Open the cloned directory in VS Code. PlatformIO will automatically detect the configuration.
Configure your network credentials in the project configuration header if streaming over Wi-Fi.
Connect your ESP32-C3 via USB and run Build & Upload from the PlatformIO status bar.