From 1dd3345f0cae4591ac20757c60cfe926de36b037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20H=C3=B6llwerth?= Date: Wed, 2 Aug 2023 22:59:51 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 71810d0..dd0a8ae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # NMEA-2000-influxdb 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 From 234fcfaa9687e3f562a0db15d4662441d36f9935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20H=C3=B6llwerth?= Date: Fri, 18 Aug 2023 22:38:04 +0200 Subject: [PATCH 2/2] Update README.md --- Software/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Software/README.md b/Software/README.md index 4c5b8b0..af75e34 100644 --- a/Software/README.md +++ b/Software/README.md @@ -25,3 +25,17 @@ This script uses the following libraries: - [InfluxDB-Client-for-Arduino](https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino) - [NMEA2000](https://github.com/ttlappalainen/NMEA2000) - [NMEA2000_esp32](https://github.com/ttlappalainen/NMEA2000_esp32) +- [RTCLib](https://github.com/adafruit/RTClib?utm_source=platformio&utm_medium=piohome) +- [Time](https://github.com/PaulStoffregen/Time?utm_source=platformio&utm_medium=piohome) + +The relevant section in **platformio.ini**: +``` +lib_deps = + tobiasschuerg/ESP8266 Influxdb@^3.13.1 + ttlappalainen/NMEA2000-library@^4.18.7 + ttlappalainen/NMEA2000_esp32@^1.0.3 + bblanchon/ArduinoJson@^6.21.2 + Wire + paulstoffregen/Time@^1.6.1 + adafruit/RTClib@^2.1.1 +```