2022-01-08 03:14:26 +01:00
|
|
|
#ifndef _LUBEAPP_H_
|
|
|
|
#define _LUBEAPP_H_
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
2022-01-09 20:51:16 +01:00
|
|
|
#include "config.h"
|
2022-01-08 03:14:26 +01:00
|
|
|
|
2022-01-09 20:51:16 +01:00
|
|
|
typedef enum eSystem_Status
|
2022-01-08 03:14:26 +01:00
|
|
|
{
|
2022-01-09 20:51:16 +01:00
|
|
|
sysStat_NOP,
|
|
|
|
sysStat_Startup,
|
|
|
|
sysStat_Normal,
|
|
|
|
sysStat_Rain,
|
|
|
|
sysStat_Purge,
|
|
|
|
sysStat_Error
|
|
|
|
} tSystem_Status;
|
2022-01-08 03:14:26 +01:00
|
|
|
|
2022-01-09 20:51:16 +01:00
|
|
|
void RunLubeApp(LubeConfig_t *cfg);
|
2022-01-08 03:14:26 +01:00
|
|
|
|
|
|
|
#endif
|