How can i call a function when user type any text ?
static cmd_t mtxhi_pub[] = {
{"!hi", "", pub_hi, NULL},
{NULL,NULL, NULL , NULL}
};
This will call pub_hi, when user type !hi, but how can i get any typed text ??
i try with "", but ...........
(sorry for my bad english)
Any ideas ?