28 lines
333 B
C++
28 lines
333 B
C++
/// © MiroZ 2024
|
|
|
|
#ifndef __APP_H__
|
|
#define __APP_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "Settings.h"
|
|
#include "Led.h"
|
|
#include "Wifi.h"
|
|
|
|
class App
|
|
{
|
|
protected:
|
|
Wifi * m_wifi = nullptr;
|
|
|
|
public:
|
|
Led * m_led = nullptr;
|
|
|
|
public:
|
|
App();
|
|
void init();
|
|
void start();
|
|
void readSensors();
|
|
void reportSensors();
|
|
};
|
|
|
|
#endif /* __APP_H__ */ |