mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-10 23:24:22 +00:00
22 lines
456 B
C
22 lines
456 B
C
#ifndef COMMANDS_H
|
|
#define COMMANDS_H
|
|
|
|
static struct {
|
|
struct arg_int *detail;
|
|
struct arg_int *temp;
|
|
struct arg_int *voltage;
|
|
} info_args;
|
|
static int do_info_cmd (int argc, char **argv) {
|
|
return 0;
|
|
}
|
|
static void register_info (void) {
|
|
const esp_console_cmd_t info_cmd = {
|
|
.command = "info",
|
|
.help = "System Information",
|
|
.hint = NULL,
|
|
.func = &do_info_cmd,
|
|
.argtable = &info_args
|
|
};
|
|
}
|
|
|
|
#endif |