tools: added aqhome-tool.

First command implemented is PING.
This commit is contained in:
Martin Preuss
2023-04-18 23:26:19 +02:00
parent db86d61e33
commit 95cb4e93c3
5 changed files with 526 additions and 0 deletions

20
apps/aqhome-tool/ping.h Normal file
View File

@@ -0,0 +1,20 @@
/****************************************************************************
* This file is part of the project AqHome.
* AqHome (c) by 2023 Martin Preuss, all rights reserved.
*
* The license for this file can be found in the file COPYING which you
* should have received along with this file.
****************************************************************************/
#ifndef AQHOME_TOOL_PING_H
#define AQHOME_TOOL_PING_H
#include <gwenhywfar/db.h>
int AQH_Tool_Ping(GWEN_DB_NODE *dbArgs, int argc, char **argv);
#endif