diff --git a/.gitignore b/.gitignore index 9f97022..92d030a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -target/ \ No newline at end of file +target/ +code/project/*/ \ No newline at end of file diff --git a/code/project/README.md b/code/project/README.md new file mode 100644 index 0000000..1dc92cf --- /dev/null +++ b/code/project/README.md @@ -0,0 +1,43 @@ +# micro-tuner +An instrument tuner assistant, designed to be run on the Microbit V2. Portable and Practical! +## Background + +### Primary Goals (VIP) +* + +### Stretch Goals +* + + +### Fun, less realistic ideas +* + + +## Source Code Overview + + +### `src/ex` +Lorem Ipsum +* 1,2,3 + + + + +## Building/ Running + + +## Testing + +### Manual End-to-End tests + +#### Client side end-to-end + + +### Coded Unit tests + + +## Demo + + + +###### Author: David Westgate \ No newline at end of file diff --git a/code/project/main.py b/code/project/main.py new file mode 100644 index 0000000..f69236d --- /dev/null +++ b/code/project/main.py @@ -0,0 +1,14 @@ +from microbit import * +import music +display.show(Image.HAPPY) + +while True: + + if button_a.was_pressed(): + music.play(music.BIRTHDAY) + + if button_b.was_pressed(): + music.play(music.FUNK) + sleep(100) + + diff --git a/notebook.md b/notebook.md index a0c4e3e..52abba5 100644 --- a/notebook.md +++ b/notebook.md @@ -1,3 +1,6 @@ +### Monday 09-Dec-2024 +📝 [Project](./code/project/README.md): I began work on the final project. + ### Saturday 07-Dec-2024 📝 [Popgen](./code/popgen/README.md): Continued work