-
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.
Merge branch 'main' of github.com:ryanchaiyakul/potentiostat
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
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,25 @@ | ||
name: PlatformIO CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cache/pip | ||
~/.platformio/.cache | ||
key: ${{ runner.os }}-pio | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
- name: Install PlatformIO Core | ||
run: pip install --upgrade platformio | ||
- name: Build PlatformIO Project | ||
run: pio run |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Potentiostat | ||
|
||
[![PlatformIO CI](https://github.com/ryanchaiyakul/potentiostat/actions/workflows/platformio.yml/badge.svg)](https://github.com/ryanchaiyakul/potentiostat/actions/workflows/platformio.yml) | ||
|
||
I2BL potentiostat library and project. | ||
|
||
# Goals | ||
|
@@ -33,4 +35,4 @@ git clone --recurse-submodules [email protected]:ryanchaiyakul/potentiostat.git | |
|
||
# Development Guide | ||
|
||
Create a valid class that inherits from Voltammetry defined in [Voltammetry.h](lib/Voltammetry/Voltammetry.h). | ||
Create a valid class that inherits from Voltammetry defined in [Voltammetry.h](lib/Voltammetry/Voltammetry.h). |