Skip to content

Commit

Permalink
add Result stub (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
openshwprojects committed Oct 21, 2024
1 parent 51ca85a commit 57938f6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/cmnds/cmd_tasmota.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,19 +433,24 @@ int taslike_commands_init(){
// those are stubs, they are handled elsewhere so we can have Tasmota style replies

//cmddetail:{"name":"State","args":"NULL",
//cmddetail:"descr":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("State", cmnd_stub, NULL);
//cmddetail:{"name":"Sensor","args":"NULL",
//cmddetail:"descr":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Sensor", cmnd_stub, NULL);
//cmddetail:{"name":"Status","args":"NULL",
//cmddetail:"descr":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Status", cmnd_stub, NULL);
//cmddetail:{"name":"Result","args":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Result", cmnd_stub, NULL);
return 0;
}

0 comments on commit 57938f6

Please sign in to comment.