File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ mv dist/buzzer_piano export/buzzer_piano
1313cp misc/modules_licenses.txt export/licenses.txt
1414
1515cd export
16- tar -czvf buzzer_piano_VERSION .tar.gz .
16+ tar -czvf bp_linux_VERSION .tar.gz .
1717rm buzzer_piano
1818rm licenses.txt
1919cd -
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ The microcontroller is now ready to receive note data from the virtual piano.
5353## Requirements
5454### Computer
5555#### Use the binary:
56- TODO
56+ [ See Releases ] ( https://github.com/baerkanogue/buzzer-piano/releases/ )
5757
5858#### Or run from source:
5959- Python
@@ -68,7 +68,7 @@ pip install -r requirements.txt
6868```
6969
7070#### Or compile from source:
71- #### Linux
71+ ##### Linux
7272``` bash
7373pyinstaller \
7474--onefile \
@@ -80,6 +80,18 @@ main.py
8080chmod +x dist/buzzer_piano
8181```
8282
83+ #### Windows
84+ ``` pwsh
85+ pyinstaller \
86+ --onefile \
87+ --noconsole \
88+ --icon=misc\buzzer.icon \
89+ --add-data "misc\;misc" \
90+ --add-data "game\assets;game\assets" \
91+ --name "buzzer_piano." \
92+ main.py
93+ ```
94+
8395### Microcontroller
8496- Micropython
8597- Passive piezo buzzer
You can’t perform that action at this time.
0 commit comments