diff --git a/README.md b/README.md index 4baaa81..27b876b 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,31 @@ saved position read out of EEPROM memory. ### Building Hex Files +Builds the binary hex files. They are located in the `build/src/` directory +found in the project root. + +```sh +cd ./ +echo "2" | ./otto.sh + +``` + ### Automated Flashing Hex Files +Builds then flashes the binary hex files onto the micro-controller + +```sh +cd ./ +echo "4" | ./otto.sh + +``` + ### Running Tests + +The code below will run the cpputest tests in verbose and color mode. + +```sh +cd ./ +echo "1" | ./otto.sh + +```