Skip to content

🧶 an interactive visualization of a GY-521's gyroscope data as recorded by an Arduino

License

MIT, OFL-1.1 licenses found

Licenses found

MIT
LICENSE.txt
OFL-1.1
FiraMono-LICENSE.txt
Notifications You must be signed in to change notification settings

solanto/whee.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

whee.py

An interactive visualization using a GY-521's gyroscope data as recorded by an Arduino.

demo gif

A sample of the visualization.

requirements

This won't work with Python 3.9! This has only been tested successfully on Python 3.8; earlier versions may or may not work. To make things easier, ensure Python is in your PATH.

setup

Clone or download and unzip this repository.

Then, navigate to the project's root directory in a terminal. If you've decided to keep the folder in your downloads, this might be something like:

cd ~/Downloads/whee

I recommend starting setup by making a virtual environment for Python installs. This helps avoid conflicts with other Python software.

python -m venv env
./env/Scripts/activate

Then, install the Python dependencies.

pip install -r requirements.txt

Upload the Arduino code to the board using the PlatformIO Python module. This can be easier for a project like this than using the Arduino IDE. Any unmet dependencies will be installed automatically the first time this is run.

pio run -t upload

use

Wire up the sensor to the Arduino like this.

When you open a new terminal session, be sure to activate the virtual environment before using the program.

./env/Scripts/activate

A command in the following form runs the visualization:

python whee.py [-h] [--port PORT] [--baud BAUD] [--delimiter DELIMITER] [--sample-rate SAMPLE_RATE] [--ready-flag READY_FLAG]

Use the -h option to see more info on each item.

Keep the sensor steady until the program indicates that calibration has ended. During the visualization, hit the spacebar to switch coloring from shadows to normals.

If calibration seems to go on forever, try hitting the reset button on the Arduino. Sometimes the serial interface isn't the most stable, so data like the ready flag can get lost.

examples

To use default settings and let the program guess the right port (this should work in many cases):

python whee.py

To tell the program you want Windows port COM5 and a baudrate of 4800:

python whee.py -p COM5 -b 4800

finding the arduino's port

You can find the Arduino's port yourself using your system's device manager, the Arduino IDE, or PlatformIO:

pio device list

editing & debugging

The visualization Python source is just /whee.py. I kept as much of the more IO-focused code as general as possible, and the Ursina graphics engine is a joy to use. Have fun!

The Arduino source can be found at /src/main.ino. There, you can change outputs from the Arduino. Open it with your favorite editor and build or compile with PlatformIO. You can even install the PlatformIO extension for your editor! Alternatively, you can open the file in the Arduino IDE, which will have you move it to a new folder and break the current PlatformIO setup.

For debugging, the Arduino code's preconfigured outputs work well with the Arduino serial plotter. This is convenient for people using the Arduino IDE, but people using other editors and PlatformIO can also use the serial plotter without opening the code in the Arduino IDE.

plotter gif

Data shown in the serial plotter.

About

🧶 an interactive visualization of a GY-521's gyroscope data as recorded by an Arduino

Topics

Resources

License

MIT, OFL-1.1 licenses found

Licenses found

MIT
LICENSE.txt
OFL-1.1
FiraMono-LICENSE.txt

Stars

Watchers

Forks