A simple device for recording gym sessions, using AVR.
Go to file
Andrew Lalis 8f67837925 Added clean command. 2022-12-09 11:44:27 +01:00
.vscode added compiler args for vscode 2022-12-08 15:55:11 +01:00
examples Added first implementation of hardware interrupt, and example for GPIO usage. 2022-12-02 17:58:49 +01:00
src Added simple functions for checking button status 2022-12-08 08:28:32 +01:00
.gitignore Added starter example project. 2022-12-02 11:42:42 +01:00
LICENSE Initial commit 2022-12-02 08:47:52 +01:00
Makefile Added simple functions for checking button status 2022-12-08 08:28:32 +01:00
README.md Added more info to readme. 2022-12-02 11:54:18 +01:00
build.d Added clean command. 2022-12-09 11:44:27 +01:00

README.md

GymPal

A simple device for recording gym sessions, using AVR.

The GymPal is a lightweight piece of hardware with built-in storage, time-keeping, display, and controls, to allow you to record exercise metrics on-the-fly in a satisfying, tactile way.

Development

The software for this system is developed in C, using avr-libc, and the build toolchain is managed by make, using avr-gcc and avr-dude to upload firmware to the Atmega328p microcontroller.

To compile the firmware, you can run make.

To upload the firmware to an Arduino, run make flash.

Hardware

Here's a list of the hardware that this project uses, just for reference:

The following links are helpful for learning how to program an AVR-based microcontroller.