-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add instructions for manual template creation
- Loading branch information
1 parent
d01b85c
commit 9b08ae3
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,19 @@ Then open `platformio.ini` and make any additional adjustments. | |
|
||
## Usage | ||
|
||
To make a project based on this template, you can click on the `Use this template` button at the top of the page. | ||
|
||
### Manually making a project based on this template | ||
|
||
If you don't want to use github, you can clone this project manually (so you can use it on [Codeberg](https://codeberg.org/) or another git repository): | ||
|
||
```bash | ||
git clone [email protected]:madskjeldgaard/platformio-arduino-template.git my-pio-arduino-project | ||
cd my-pio-arduino-project | ||
git remote remove origin | ||
git remote add origin <your_git_repo> | ||
``` | ||
|
||
### Compiling and uploading | ||
|
||
To compile and upload your sketch, simply run this command, adjusted to one of the supported boards, eg for Teensy 4.0: | ||
|