23 lines
391 B
C++
23 lines
391 B
C++
#ifndef Ctrl_h
|
|
#define Ctrl_h
|
|
#include <Arduino.h>
|
|
#include "Ecran.h"
|
|
#include "Domoticz.h"
|
|
#include "Designer.h"
|
|
#include "Timer.h"
|
|
#include "Meteo.h"
|
|
|
|
class Ctrl {
|
|
public:
|
|
Ctrl();
|
|
|
|
//static Ctrl * getSingletonInstance();
|
|
public:
|
|
//Ctrl * ctrl;
|
|
Designer * designer;
|
|
Timer * timer;
|
|
Ecran * ecran;
|
|
Domoticz * domoticz;
|
|
Connect * connect;
|
|
};
|
|
#endif |