Commander-API
V2.1.0
Simple Command Parser
|
Structure for command data. More...
#include <Commander-API.hpp>
Public Attributes | |
uint16_t | place |
struct API_t * | left |
struct API_t * | right |
const char * | name |
const char * | desc |
void(* | func )(char *, Stream *response) |
__FlashStringHelper * | name_P |
__FlashStringHelper * | desc_P |
Structure for command data.
Every command will get a structure like this. This structure is used to store your commands in a balanced binary tree.
Definition at line 109 of file Commander-API.hpp.
const char* Commander::API_t::desc |
Definition at line 115 of file Commander-API.hpp.
__FlashStringHelper* Commander::API_t::desc_P |
Definition at line 121 of file Commander-API.hpp.
void(* Commander::API_t::func) (char *, Stream *response) |
Definition at line 117 of file Commander-API.hpp.
struct API_t* Commander::API_t::left |
Definition at line 112 of file Commander-API.hpp.
const char* Commander::API_t::name |
Definition at line 114 of file Commander-API.hpp.
__FlashStringHelper* Commander::API_t::name_P |
Definition at line 120 of file Commander-API.hpp.
uint16_t Commander::API_t::place |
Definition at line 111 of file Commander-API.hpp.
struct API_t* Commander::API_t::right |
Definition at line 113 of file Commander-API.hpp.