mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
35 lines
727 B
C++
35 lines
727 B
C++
#pragma once
|
|
#include <Arduino.h>
|
|
|
|
#include "Global.h"
|
|
|
|
class LoggingClass;
|
|
|
|
typedef std::vector<LoggingClass> MyLoggingVector;
|
|
|
|
class LoggingClass {
|
|
public:
|
|
|
|
LoggingClass(unsigned long period, unsigned int maxPoints, String loggingValueKey, String key);
|
|
~LoggingClass();
|
|
|
|
void loop();
|
|
|
|
private:
|
|
|
|
unsigned long currentMillis;
|
|
unsigned long prevMillis;
|
|
unsigned long _period;
|
|
unsigned int _maxPoints;
|
|
String _loggingValueKey;
|
|
String _key;
|
|
|
|
void addNewDelOldData(const String filename, size_t maxPoints, String payload);
|
|
};
|
|
|
|
extern MyLoggingVector* myLogging;
|
|
|
|
extern void choose_log_date_and_send();
|
|
extern void sendLogData(String file, String topic);
|
|
extern void clean_log_date();
|