-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
164 additions
and
80 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,52 @@ | ||
# GitHub Action Workflow | ||
|
||
name: Build Examples for AVR UNO | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
|
||
# This defines a job for checking the Arduino library format specifications | ||
# see <https://github.com/marketplace/actions/arduino-arduino-lint-action> | ||
compile-uno: | ||
name: check library format | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Arduino - lint | ||
- name: Arduino-lint | ||
uses: arduino/arduino-lint-action@v1 | ||
with: | ||
library-manager: update | ||
verbose: false | ||
|
||
# Run Arduino Compiler | ||
# see https://github.com/arduino/compile-sketches | ||
- name: Compile examples | ||
uses: arduino/compile-sketches@v1 | ||
with: | ||
verbose: true | ||
fqbn: arduino:avr:uno | ||
|
||
libraries: | | ||
- source-path: ./ | ||
- name: LiquidCrystal | ||
sketch-paths: | | ||
- 'examples/LCDKeypadRadio' | ||
# size-report-sketch: 'ConnectionHandlerDemo' | ||
# enable-size-deltas-report: 'true' | ||
# sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# LCDKeypadRadio Example | ||
|
||
This example allows controlling the a supported radio chip by using the LCDKeypad Shield | ||
stacked on a Arduino UNO board. | ||
|
||
It is designed for Arduino UNO only. | ||
|
||
You have to modify the source code line where the radio variable is defined to the chip you use. | ||
There are out-commented lines for every chip in the sketch. | ||
|
||
Be sure to activate the lines for the RST signal for SI4703 radio chips. | ||
|
||
Please read the README.md files in the TEST____ examples for more chip specific hints. | ||
|
||
There is a picture of this setup with a RDA5807 chip available at <http://localhost:8080/elements/audio/rda5807.htm> | ||
|
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
Oops, something went wrong.