This commit is contained in:
locker98 2024-12-29 22:08:24 -05:00
parent 6cb1b721c8
commit 0c6447f309
4 changed files with 67 additions and 0 deletions

29
library.json Normal file
View File

@ -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"]
}
]
}

9
library.properties Normal file
View File

@ -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

10
src/InfluxdbClient.cpp Normal file
View File

@ -0,0 +1,10 @@
#include "InfluxdbClient.h"
IRHasbroTag::InfluxdbClient() {}
IRHasbroTag::~InfluxdbClient() {
}
void IRHasbroTag::begin() {
}

19
src/InfluxdbClient.h Normal file
View File

@ -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