forked from jmriego/Fino
-
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.
* default_spring: 1st try * adding dump * get default spring working * add workflow and remove dump debug * modify to use structs for joystick gains * add new setup gains Co-authored-by: jmriego <[email protected]> Co-authored-by: Jose Riego Valenzuela <[email protected]>
- Loading branch information
1 parent
1e7ba75
commit c326572
Showing
9 changed files
with
141 additions
and
69 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Arduino | ||
|
||
on: | ||
push: | ||
tags: ['v*'] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Arduino CLI | ||
uses: arduino/[email protected] | ||
|
||
- name: Install Arduino Micro platform | ||
run: | | ||
arduino-cli core update-index | ||
arduino-cli core install arduino:avr | ||
- name: Compile Fino Arduino Sketch | ||
run: | | ||
mkdir -p build/arduino.avr.micro | ||
arduino-cli compile --fqbn arduino:avr:micro --verbose --output-dir build/arduino.avr.micro | ||
- name: Upload Arduino sketch artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Artifact.Fino | ||
path: build/arduino.avr.micro/Fino.ino.hex | ||
|
||
|
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
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
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
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
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
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
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
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