begin project; notebook entry

This commit is contained in:
David Westgate 2024-12-10 01:06:58 -08:00
parent f1236c27f6
commit 885d649beb
4 changed files with 62 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
target/
target/
code/project/*/

43
code/project/README.md Normal file
View File

@ -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

14
code/project/main.py Normal file
View File

@ -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)

View File

@ -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