Initial
This commit is contained in:
parent
6cb1b721c8
commit
0c6447f309
29
library.json
Normal file
29
library.json
Normal 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
9
library.properties
Normal 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
10
src/InfluxdbClient.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include "InfluxdbClient.h"
|
||||||
|
|
||||||
|
|
||||||
|
IRHasbroTag::InfluxdbClient() {}
|
||||||
|
|
||||||
|
IRHasbroTag::~InfluxdbClient() {
|
||||||
|
}
|
||||||
|
|
||||||
|
void IRHasbroTag::begin() {
|
||||||
|
}
|
19
src/InfluxdbClient.h
Normal file
19
src/InfluxdbClient.h
Normal 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
|
Loading…
Reference in New Issue
Block a user