/stephens_cave/projects.html
VIM 8.2

/* Back */

/* Welcome to my projects page.

Each project is summarized below, feel free to take a look around.

*/

GPS Activity Logger
A portable device for logging GPS data. My first esp32 project.
Details →
Hex Counter
A fun soldering project that serves as a nice reminder to stay busy and not waste time.
Details →
Bench Press Recorder
A simple bench press reps counter. My first introduction to digital electronics.
Details →

// Projects

struct GPS_Activity_Logger {

std::string summary = "A portable device for logging GPS data. My first esp32 project. " ;

std::string details = "See project details";

};

struct Hex_Counter {

std::string summary = "A fun soldering project that serves as a nice reminder to stay busy and not waste time";

std::string details = "See project details";

};

struct Bench_Press_Recorder {

std::string summary = "A simple bench press reps counter. My first introduction to digital electronics.";

std::string details = "See project details";

};

/* Back */

/home/stephen/projects.md Ln 1, Col 1