From 0c6447f309085f5dcb8cbd98fdc7aee3795df623 Mon Sep 17 00:00:00 2001 From: locker98 Date: Sun, 29 Dec 2024 22:08:24 -0500 Subject: [PATCH] Initial --- library.json | 29 +++++++++++++++++++++++++++++ library.properties | 9 +++++++++ src/InfluxdbClient.cpp | 10 ++++++++++ src/InfluxdbClient.h | 19 +++++++++++++++++++ 4 files changed, 67 insertions(+) create mode 100644 library.json create mode 100644 library.properties create mode 100644 src/InfluxdbClient.cpp create mode 100644 src/InfluxdbClient.h diff --git a/library.json b/library.json new file mode 100644 index 0000000..bbb8e5d --- /dev/null +++ b/library.json @@ -0,0 +1,29 @@ +{ + "name": "InfluxdbClient", + "keywords": "Influxdb tESP32 database.", + "description": "Library for Influxdb that allows the ESP32 to talk to the database.", + "repository": + { + "type": "git", + "url": "https://gitea.locker98.com/locker98/InfluxdbClient.git" + }, + "authors": + [ + { + "name": "locker98", + "email": "coolemail45@proton.me", + "maintainer": true + } + ], + "version": "0.0.1", + "frameworks": "arduino", + "platforms": ["espressif8266", "espressif32"], + "dependencies": [ + { + "owner": "arduino-libraries", + "name": "Ethernet", + "version": "^2.0.0", + "platforms": ["espressif8266", "espressif32"] + } + ] +} diff --git a/library.properties b/library.properties new file mode 100644 index 0000000..3c88205 --- /dev/null +++ b/library.properties @@ -0,0 +1,9 @@ +name=InfluxdbClient +version=0.0.1 +author=Locker98 +category=Communication +maintainer=locker98 +sentence=Influxdb Client for ESP32 with WS5500 ethernet chip +paragraph=Library for Influxdb that allows the ESP32 to talk to the database. +url=https://gitea.locker98.com/locker98/InfluxdbClient +architectures=esp8266,esp32 diff --git a/src/InfluxdbClient.cpp b/src/InfluxdbClient.cpp new file mode 100644 index 0000000..e132a50 --- /dev/null +++ b/src/InfluxdbClient.cpp @@ -0,0 +1,10 @@ +#include "InfluxdbClient.h" + + +IRHasbroTag::InfluxdbClient() {} + +IRHasbroTag::~InfluxdbClient() { +} + +void IRHasbroTag::begin() { +} diff --git a/src/InfluxdbClient.h b/src/InfluxdbClient.h new file mode 100644 index 0000000..b2165e4 --- /dev/null +++ b/src/InfluxdbClient.h @@ -0,0 +1,19 @@ +#ifndef InfluxdbClient_H +#define InfluxdbClient_H + + +class InfluxdbClient { +public: + explicit InfluxdbClient(); // Constructor + ~IRHasbroTag(); + + + void begin(); + // Functions + +private: + // Instances + +}; + +#endif // InfluxdbClient_H