begin project; notebook entry
This commit is contained in:
parent
f1236c27f6
commit
885d649beb
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
target/
|
||||
code/project/*/
|
43
code/project/README.md
Normal file
43
code/project/README.md
Normal 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
14
code/project/main.py
Normal 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)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user