aqhome-tool: started working on code to convert BMP file to assembler data.

This commit is contained in:
Martin Preuss
2025-11-22 14:10:42 +01:00
parent dbba5617c7
commit 3083b433a3
5 changed files with 592 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
#include "./data/watch.h"
#include "./data/devicestate.h"
#include "./data/imgperioddata.h"
#include "./image/readbmp.h"
#include <aqhome/api.h>
#include <aqhome/aqhome.h>
@@ -105,6 +106,7 @@ int main(int argc, char **argv)
GWEN_FE_DAH("watch", AQH_Tool_Watch, I18N("Watch and print changes of values on the data server")),
GWEN_FE_DAH("devicestate", AQH_Tool_DeviceState, I18N("Show state of devices")),
GWEN_FE_DAH("imgperioddata", AQH_Tool_ImgPeriodData, I18N("Create diagram of datapoints from a date range")),
GWEN_FE_DAH("dumpbmp", AQH_Tool_DumpBmpFile, I18N("Dump headers of BMP file")),
GWEN_FE_END(),
};
const GWEN_FUNCS *func;