> For the complete documentation index, see [llms.txt](https://mugic-motion.gitbook.io/mugic-r-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mugic-motion.gitbook.io/mugic-r-documentation/frequently-asked-questions.md).

# Frequently Asked Questions

<details>

<summary>How much data does the device send? </summary>

The data is sampled by default every 250ms (450Hz) and sends a single UDP packet of less than 512 bytes, as a result the network traffic is minimal. The frequency can be adjusted through the loop\_delay parameter, but the device maximum frequency is every 10ms (100Hz) and while possible, it is hard to configure the sensor to achieve this throughput.

</details>

<details>

<summary>How physically accurate is MUGIC® ?</summary>

The sensor integrated in MUGIC®  is a Bosch BNO055, one of the best fused IMU on the market. For technical documentation incl. range and accuracy, please see their documentation ([https://cdn-shop.adafruit.com/datasheets/BST\_BNO055\_DS000\_12.pdf](https://l.facebook.com/l.php?u=https%3A%2F%2Fcdn-shop.adafruit.com%2Fdatasheets%2FBST_BNO055_DS000_12.pdf%3Ffbclid%3DIwAR39iBXEzhbg2LK9Cv4X-RsQeHW8es390-tidt0F-jdZSAhF7Ba_Mfz5J4g\&h=AT3RKQSkvCdsJr3fFUiOfnhkWPhvBAZttirwGdRyYW95VGpLwf5mBAlzGAO2Qs0sDaH4l-KWJUxFZHrMp8sW9t1ZIUI3VX2MUXYvGonPYNSO1iAIbAqWEFx4pWP7ZuPlYCwTC3Ci))

</details>

<details>

<summary>Can I track absolute position with MUGIC® ?</summary>

This is a hard problem with any IMU sensor, since they only provide orientation and acceleration, not speed or position. For instance, it is physically impossible to distinguish a device traveling at constant speed from an immobile device since in both cases acceleration is zero. Using additional constraints (such as when the device is mounted on a doorframe or other physically -constrained element, or if the device undergoes a cyclical motion such as a rotation about a fixed axis) it is possible to achieve excellent positioning. For a free-form sensor like MUGIC® , it remains an active research project to estimate accurate speed and position, although in theory using physical constraints from an instrument such as a violin (if mounted on the box hand) should help.&#x20;

([https://cdn-shop.adafruit.com/datasheets/BST\_BNO055\_DS000\_12.pdf](https://l.facebook.com/l.php?u=https%3A%2F%2Fcdn-shop.adafruit.com%2Fdatasheets%2FBST_BNO055_DS000_12.pdf%3Ffbclid%3DIwAR39iBXEzhbg2LK9Cv4X-RsQeHW8es390-tidt0F-jdZSAhF7Ba_Mfz5J4g\&h=AT3RKQSkvCdsJr3fFUiOfnhkWPhvBAZttirwGdRyYW95VGpLwf5mBAlzGAO2Qs0sDaH4l-KWJUxFZHrMp8sW9t1ZIUI3VX2MUXYvGonPYNSO1iAIbAqWEFx4pWP7ZuPlYCwTC3Ci))

</details>

<details>

<summary>What's the difference between MUGIC® 1 vs. MUGIC® 2</summary>

![](/files/vexPOvYYKd1QyfCHQ7MA)

**Developer note:**&#x20;

Without going too deep into the technical details, the Real-Time Operating System (RTOS) in MUGIC V2 allows the different functions of the device to work together in a timely fashion. For example, in the MUGIC V1, when getting a Web request, we would have to process it, return it, and then resume sending off the datagrams. The datagram is supposed to come every 20 ms, but there would be some jitter because of all these other functions. Hopefully, there is much less jitter in the RTOS in the datagram, even though we are also performing the web and BLE functions simultaneously. We will not miss a web request for reliability because the device is otherwise busy doing other tasks. In V1, it was sometimes hit or miss and some requests could go unanswered, resulting in additional bugs.&#x20;

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://mugic-motion.gitbook.io/mugic-r-documentation/frequently-asked-questions.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
