mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 03:56:57 +03:00
14 lines
393 B
C++
14 lines
393 B
C++
#ifndef INTERFACE_INFLUXDB_H
|
|
#define INTERFACE_INFLUXDB_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <functional>
|
|
|
|
void InfluxDBInit(std::string _influxDBURI, std::string _database, std::string _measurement, std::string _user, std::string _password);
|
|
void InfluxDBdestroy();
|
|
|
|
void InfluxDBPublish(std::string _key, std::string _content, std::string _timestamp);
|
|
|
|
#endif //INTERFACE_INFLUXDB_H
|