This project is designed to monitor and visualize heart rate and rotation speed data from a KONAMI AEROBIKE 75XLII in real-time using Python. The data is retrieved via a serial connection and plotted using Matplotlib.
The following document is the manual for III. It is not II. The order in which commands are sent seems to be different between the actual device and the manual. http://jp-chuoh.com/chuohsys/wp-content/uploads/2014/08/75xl3.pdf
bike-realtime-plot
├── src
│ ├── main.py # Entry point of the application
│ ├── serial_reader.py # Handles serial communication
│ ├── plotter.py # Responsible for plotting the data
│ └── utils.py # Utility functions for data processing
├── requirements.txt # Lists project dependencies
└── README.md # Project documentation
-
Clone the repository:
git clone <repository-url> cd bike-realtime-plot -
Install the required packages:
pip install -r requirements.txt
-
Connect your KONAMI AEROBIKE 75XLIII to your computer via the appropriate serial port.
-
Ensure the bike is in online mode.
-
Run the application:
python src/main.py -
The application will start retrieving data and display it in real-time.
- Python 3.x
- Matplotlib
- PySerial
This project is licensed under the MIT License. See the LICENSE file for more details.