Skip to content

Commit ebe6616

Browse files
committed
Migrate code from IoAbstraction
1 parent 487f24c commit ebe6616

19 files changed

Lines changed: 1511 additions & 29 deletions
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior, if it is more than trival to set up the test for this, please include a sketch that recreates the problem.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Screenshots**
20+
If applicable, add screenshots to help explain your problem.
21+
22+
**Device and Environment**
23+
Please include a complete breakdown of your board, attached hardware, developer environment etc.
24+
25+
**Additional context**
26+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/workflows/platformio.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: PlatformIO CI
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
example:
10+
- examples/ioLogging/ioLogging.ino
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/cache@v4
14+
with:
15+
path: |
16+
~/.cache/pip
17+
~/.platformio/.cache
18+
key: ${{ runner.os }}-pio
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version: '3.12'
22+
- name: Install PlatformIO Core
23+
run: pip install --upgrade platformio
24+
- name: Build PlatformIO examples
25+
run: pio ci --lib "." --project-conf=platformio.ini
26+
env:
27+
PLATFORMIO_CI_SRC: ${{ matrix.example }}

0 commit comments

Comments
 (0)