linux
monitoring
raspberry-pi
automation
raspberrypi
mqtt
iot
internet-of-things
smarthome
dashboard
mqtt-hyperdash
control-systems
rule-engines
cockpit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.9 KiB
62 lines
1.9 KiB
/* ELEMENT_GROUPS.H (c) Markus Hoffmann */ |
|
|
|
/* This file is part of MQTT-Hyperdash, the MQTT Dashboard |
|
* ============================================================ |
|
* MQTT-Hyperdash is free software and comes with NO WARRANTY - read the file |
|
* COPYING for details |
|
*/ |
|
|
|
|
|
typedef struct { |
|
unsigned int opcode; |
|
const char *name; |
|
char * (*function)(); |
|
} GROUPDEF; |
|
|
|
extern const GROUPDEF groups[]; |
|
extern const int anzgroups; |
|
/* Shortcut definitions */ |
|
|
|
#define XY "X=%d Y=%d " |
|
#define XYWH "X=%d Y=%d W=%d H=%d " |
|
#define XYWHT "X=%d Y=%d W=%d H=%d TOPIC=\"%s\" " |
|
#define XYWHR "X=%d Y=%d W=%d H=%d REVERT=1 " |
|
#define XYHT "X=%d Y=%d H=%d TEXT=\"%s\" " |
|
|
|
#define DIGIFORMAT "FORMAT=\"######\" " |
|
#define DIGIMM "MIN=0 MAX=1000 " |
|
|
|
#define ANAFORMAT "FORMAT=\"######.###\" " |
|
#define ANAMM "MIN=0 MAX=4 " |
|
|
|
#define FONT_SMALL "FONT=\"Courier_New_Bold\" FONTSIZE=10 " |
|
#define FONT_TINY "FONT=\"Arial\" FONTSIZE=10 " |
|
#define FONT_BUTTON "FONT=\"Arial\" FONTSIZE=16 " |
|
#define FONT_PAR "FONT=\"Courier_New_Bold\" FONTSIZE=16 " |
|
#define FONT_PARNAME "FONT=\"Courier_New\" FONTSIZE=16 " |
|
|
|
/* Color definitions */ |
|
|
|
#define WHITE "FGC=$FFFFFFFF " |
|
#define BGBLUE "BGC=$40FF " |
|
#define BGBLACK "BGC=$FF " |
|
#define GRAY "FGC=$808080FF " |
|
#define BGGRAY "BGC=$808080FF " |
|
#define BGGRAY2 "BGC=$8080C0FF " |
|
#define BGDARKGRAY "BGC=$404040FF " |
|
|
|
#define YELLOW "FGC=$FFFF00FF " |
|
#define ORANGE "FGC=$FF4500FF " |
|
#define MAGENTA "FGC=$FF00FFFF " |
|
#define CYAN "FGC=$00FFFFFF " |
|
#define RED "FGC=$FF0000FF " |
|
#define GREEN "FGC=$00FF00FF " |
|
|
|
char *groups_activity(int x, int y, int w, int h); |
|
char *groups_statusbitmap(int x, int y, int w, int h); |
|
char *groups_onoff(int x, int y, int w, int h); |
|
char *groups_potentiometer(int x, int y, int w, int h); |
|
char *groups_dashbutton(int x, int y, int w, int h); |
|
char *groups_topicio(int x, int y, int w, int h); |
|
char *groups_gauge(int x, int y, int w, int h); |
|
|
|
|