Lydia - Printhead
PHApp.h File Reference
#include "debug_config.h"
#include "config.h"
#include "enums.h"
#include <xmath.h>
#include <macros.h>
#include <osr-base.h>
#include <App.h>
#include <Component.h>
#include <Bridge.h>
#include <SerialMessage.h>
#include <ArduinoLog.h>

Go to the source code of this file.

Classes

class  PHApp
 

Macros

#define MAX_ADDONS   5
 
#define STATUS_ERROR_BLINK
 
#define STATUS_ERROR_BLINK_OFF
 
#define STATUS_ERROR_OFF
 
#define STATUS_ERROR_ON
 
#define STATUS_WARNING_BLINK
 
#define STATUS_WARNING_BLINK_OFF
 
#define STATUS_WARNING_OFF
 
#define STATUS_WARNING_ON
 

Macro Definition Documentation

◆ MAX_ADDONS

#define MAX_ADDONS   5

Definition at line 29 of file PHApp.h.

◆ STATUS_ERROR_BLINK

#define STATUS_ERROR_BLINK
Value:
if (statusLight_1) \
{ \
statusLight_1->setBlink(true); \
}

Definition at line 151 of file PHApp.h.

◆ STATUS_ERROR_BLINK_OFF

#define STATUS_ERROR_BLINK_OFF
Value:
if (statusLight_1) \
{ \
statusLight_1->setBlink(false); \
}

Definition at line 156 of file PHApp.h.

◆ STATUS_ERROR_OFF

#define STATUS_ERROR_OFF
Value:
if (statusLight_1) \
{ \
statusLight_1->set(0); \
}

Definition at line 177 of file PHApp.h.

◆ STATUS_ERROR_ON

#define STATUS_ERROR_ON
Value:
if (statusLight_1) \
{ \
statusLight_1->set(1); \
}

Definition at line 172 of file PHApp.h.

◆ STATUS_WARNING_BLINK

#define STATUS_WARNING_BLINK
Value:
if (statusLight_0) \
{ \
statusLight_0->setBlink(true); \
}

Definition at line 140 of file PHApp.h.

◆ STATUS_WARNING_BLINK_OFF

#define STATUS_WARNING_BLINK_OFF
Value:
if (statusLight_0) \
{ \
statusLight_0->setBlink(false); \
}

Definition at line 145 of file PHApp.h.

◆ STATUS_WARNING_OFF

#define STATUS_WARNING_OFF
Value:
if (statusLight_0) \
{ \
statusLight_0->set(0); \
}

Definition at line 167 of file PHApp.h.

◆ STATUS_WARNING_ON

#define STATUS_WARNING_ON
Value:
if (statusLight_0) \
{ \
statusLight_0->set(1); \
}

Definition at line 162 of file PHApp.h.