added new research
This commit is contained in:
BIN
docs/documentation/diagrams/positionTracking.fzz
Normal file
BIN
docs/documentation/diagrams/positionTracking.fzz
Normal file
Binary file not shown.
@@ -2,25 +2,34 @@
|
||||
|
||||
## Introduction
|
||||
|
||||
For this project we want to design an embedded system that can track a users position. We want to track their current position on the ground and see how they are shifting their weight. This system will be used to track their position to determine if a user is doing the exercises correctly.
|
||||
For this project we want to design an embedded system that can track a users position. We want to track their current position on the ground. This system will be used to track their position to determine if a user is doing the exercises correctly.
|
||||
|
||||
## Objectives
|
||||
|
||||
* Design an embedded system that can track user position.
|
||||
* Develop an algorithm to process the data from the Wii Fit Board and determine the user's position.
|
||||
- Design an embedded system that can track user position.
|
||||
- Develop an algorithm to process the data from the sensor and determine the user's position.
|
||||
- Sync the code to the current task for the user.
|
||||
|
||||
## Research and Analysis
|
||||
|
||||
### Choosing the Wii Fit Board
|
||||
### Choosing the sensor
|
||||
|
||||
For this project we have chosen the Wii Fit Board as our primary sensor. The Wii Fit Board is a balance board that can measure a user's weight and center of balance. It is a low-cost sensor that is easy to interface with a microcontroller. The Wii Fit Board communicates over Bluetooth, which makes it easy to connect to a microcontroller with Bluetooth capabilities.
|
||||
For this project we have chosen LDR's as our primary sensor. The LDR's will be placed on the ground in a board and the user will stand on top of the board. The LDR's will be used to track the user's position. The LDR's will be connected to the esp32s3 microcontroller and the data will be processed to determine the user's position.
|
||||
|
||||
We have chosen this sensor since it's one of the easiest and cheapest solutions to our problem. Other sensors like pressure sensors, accelerometers, and Wii Balance Board are either too expensive, not the most optimal for the task, or hard to integrate with other systems.
|
||||
|
||||
### Alternative Solutions
|
||||
|
||||
There are other sensors that can be used for position tracking, such as pressure sensors or accelerometers. However, these sensors are more expensive and may require additional processing to determine the user's position. The Wii Fit Board provides a simple and cost-effective solution for position tracking.
|
||||
There are other sensors that can be used for position tracking, such as pressure sensors, Wii Balance Board or accelerometers. However, these sensors are either too expensive, not the most optimal for the task or hard to integrate with other systems.
|
||||
|
||||
Example of other sensors that can be used for position tracking:
|
||||
|
||||
Wii Balance Board:
|
||||
- Description: The Wii Balance Board is a balance board that can measure a user's weight and center of balance.
|
||||
- Pros: Low-cost.
|
||||
- Cons: Very hard to intergrate with other systems.
|
||||
- Cost: ~ 20 euros (https://www.amazon.nl/Nintendo-Wii-Balance-Board-Wii/dp/B0013E9HP6)
|
||||
|
||||
Pressure sensors:
|
||||
- Description: Pressure sensors can be used to measure the force applied by the user on the ground. By measuring the pressure distribution, the user's position can be determined.
|
||||
- Pros: High accuracy, can measure force applied by the user.
|
||||
@@ -42,36 +51,31 @@ To be added
|
||||
### Hardware
|
||||
|
||||
The hardware of the system will consist of the following components:
|
||||
- Wii Fit Board: The primary sensor for position tracking.
|
||||
- Pepper: The controller that will process the data from the Wii Fit Board.
|
||||
- LDR: The sensor that will be used to track the user's position based on the light intensity.
|
||||
- ESP32S3: The microcontroller that will process the data from the LDR.
|
||||
- Pepper: The controller that will recieve the processed data from the ESP32S3 and will sync the data to the current task for the user.
|
||||
|
||||
#### Connection diagram
|
||||
|
||||
To be added
|
||||
|
||||
### Software
|
||||
|
||||
The software of the system will consist of the following:
|
||||
- Wiiboard-simple: A library that will be used to transfer data from the Wii Fit Board to pepper.
|
||||
- Position Tracking Algorithm: An algorithm that will process the sensor data and determine the user's position.
|
||||
To be added
|
||||
|
||||
### Integration
|
||||
|
||||
The Wii Fit Board will be connected to Pepper using the Wiiboard-simple library. The library will be used to read the sensor data from the Wii Fit Board and transfer it to Pepper. The position tracking algorithm will process the sensor data and determine the user's position.
|
||||
|
||||
Challenge:
|
||||
- Connecting to the wii fit board. It is not possible to connect directly to the Wii Fit Board, it is necessary to use a library that can interpret the data sent by the Wii Fit Board.
|
||||
- The Wii Fit Balance Board sends data in a specific format. To interpret this data, it's necessary to understand the format and how to convert it to a usable format.
|
||||
- The Wii Fit Balance Board uses Bluetooth 2.0 to communicate. Pepper uses Bluetooth 4.0 this means that there might be compatibility issues/latancy issues.
|
||||
To be added
|
||||
|
||||
## Implementation
|
||||
|
||||
### Prototyping
|
||||
|
||||
To start the implementation of the system, we will create a prototype that will read the sensor data from the Wii Fit Board and send it to your computer. Once we have the data, we will develop the position tracking algorithm to determine the user's position. After that, the algorithm will be integrated with pepper.
|
||||
To be added
|
||||
|
||||
### Testing and Validation
|
||||
|
||||
Tests:
|
||||
- Test the prototype to ensure that it can read the sensor data from the Wii Fit Board.
|
||||
- Test the position tracking algorithm to ensure that it can determine the user's position accurately.
|
||||
- Test the integrated system to ensure that it can track the user's position in real-time.
|
||||
To be added
|
||||
|
||||
## Conclusion
|
||||
|
||||
@@ -79,9 +83,8 @@ To be added
|
||||
|
||||
## References
|
||||
|
||||
[Wiiboard lib](https://code.google.com/archive/p/wiiboard-simple/wikis/Documentation.wiki)
|
||||
[BlueSoil](https://advanti-lab.sb.dfki.de/?page_id=64)
|
||||
[FitScales](https://github.com/paulburton/fitscales)
|
||||
[WiiRemoteJ](https://github.com/micromu/WiiRemoteJ)
|
||||
[Wiibrew Wiimote](https://wiibrew.org/wiki/Wiimote)
|
||||
[Wiibrew Balance Board](https://wiibrew.org/wiki/Wii_Balance_Board)
|
||||
To be added
|
||||
|
||||
## Appendices
|
||||
|
||||
To be added
|
Reference in New Issue
Block a user