esp32_s2_stromzaehler/src/Werte.h

35 lines
690 B
C
Raw Normal View History

2023-12-06 07:02:16 +00:00
#ifndef WERTE_H
#define WERTE_H
#include <Arduino.h>
#include <Variablen.h>
class Werte : protected Variablen
{
public:
Werte(){};
~Werte(){};
// Interaktion mit Timer: //
static void set_ANL(int var);
static int get_ANL();
// Trigger Methode //
static void check();
private:
static int _anl;
static unsigned long int _new_time;
static unsigned long int _nt_backup;
static unsigned long int _old_time;
static unsigned long int _delta;
static double _in_stunden;
static double _watt;
static void nochimmer();
static void calc();
};
#endif