mirror of
https://github.com/AquaMorph/Droplets.git
synced 2025-04-30 01:35:34 +00:00
21 lines
584 B
Markdown
21 lines
584 B
Markdown
# Daisy Patch Template
|
|
|
|
A starting point for creating Daisy Patch Projects.
|
|
|
|
## Setup & Deploy
|
|
1. Create git repository
|
|
```sh
|
|
git clone --recurse-submodules git@github.com:AquaMorph/DaisyPatchTemplate.git [Project directory name]
|
|
git remote set-url origin [New git url]
|
|
git push
|
|
```
|
|
2. Build project
|
|
```sh
|
|
make lib && make
|
|
```
|
|
3. Plug usb into Daisy. Enter bootloader mode by holding the BOOT button down, and then pressing the RESET button. Once you release the RESET button, you can also let go of the BOOT button
|
|
4. Write the binary to the Daisy
|
|
```sh
|
|
make && make program-dfu
|
|
```
|