Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hoellwerth committed Jul 12, 2023
2 parents 4ddc8ae + b40744b commit 717704d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 18 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./Software

steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python
uses: actions/setup-python@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Install platformIO libraries
run: pio lib install
- name: Run PlatformIO
run: platformio run
17 changes: 0 additions & 17 deletions .github/workflows/compile.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# NMEA-2000-influxdb
An esp32 which posts traffic in the NMEA 2000 BUS to an InfluxDB 2.7 instance
An esp32 which posts traffic in the NMEA 2000 BUS to an InfluxDB 2.7 instance.
It also holds a BMP280 for reading the temperature in the environment of the esp32.

## Table of contents

Expand Down

0 comments on commit 717704d

Please sign in to comment.