2
0

audio_controls.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. /*
  2. * audio control callbacks
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <unistd.h>
  14. #include "freertos/FreeRTOS.h"
  15. #include "freertos/timers.h"
  16. #include "esp_system.h"
  17. #include "esp_log.h"
  18. #include "cJSON.h"
  19. #include "buttons.h"
  20. #include "platform_config.h"
  21. #include "accessors.h"
  22. #include "audio_controls.h"
  23. typedef esp_err_t (actrls_config_map_handler) (const cJSON * member, actrls_config_t *cur_config,uint32_t offset);
  24. typedef struct {
  25. char * member;
  26. uint32_t offset;
  27. actrls_config_map_handler * handler;
  28. } actrls_config_map_t;
  29. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config);
  30. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config);
  31. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  32. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  33. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  34. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  35. static esp_err_t actrls_init_json(const char *profile_name, bool create);
  36. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press);
  37. static void rotary_timer( TimerHandle_t xTimer );
  38. static const actrls_config_map_t actrls_config_map[] =
  39. {
  40. {"gpio", offsetof(actrls_config_t,gpio), actrls_process_int},
  41. {"debounce", offsetof(actrls_config_t,debounce), actrls_process_int},
  42. {"type", offsetof(actrls_config_t,type), actrls_process_type},
  43. {"pull", offsetof(actrls_config_t,pull), actrls_process_bool},
  44. {"long_press", offsetof(actrls_config_t,long_press),actrls_process_int},
  45. {"shifter_gpio", offsetof(actrls_config_t,shifter_gpio), actrls_process_int},
  46. {"normal", offsetof(actrls_config_t,normal), actrls_process_action},
  47. {"shifted", offsetof(actrls_config_t,shifted), actrls_process_action},
  48. {"longpress", offsetof(actrls_config_t,longpress), actrls_process_action},
  49. {"longshifted", offsetof(actrls_config_t,longshifted), actrls_process_action},
  50. {"", 0, NULL}
  51. };
  52. // BEWARE: the actions below need to stay aligned with the corresponding enum to properly support json parsing
  53. #define EP(x) [x] = #x /* ENUM PRINT */
  54. static const char * actrls_action_s[ ] = { EP(ACTRLS_POWER),EP(ACTRLS_VOLUP),EP(ACTRLS_VOLDOWN),EP(ACTRLS_TOGGLE),EP(ACTRLS_PLAY),
  55. EP(ACTRLS_PAUSE),EP(ACTRLS_STOP),EP(ACTRLS_REW),EP(ACTRLS_FWD),EP(ACTRLS_PREV),EP(ACTRLS_NEXT),
  56. EP(BCTRLS_UP),EP(BCTRLS_DOWN),EP(BCTRLS_LEFT),EP(BCTRLS_RIGHT),
  57. EP(BCTRLS_PS1),EP(BCTRLS_PS2),EP(BCTRLS_PS3),EP(BCTRLS_PS4),EP(BCTRLS_PS5),EP(BCTRLS_PS6),
  58. EP(KNOB_LEFT),EP(KNOB_RIGHT),EP(KNOB_PUSH),
  59. ""} ;
  60. static const char * TAG = "audio controls";
  61. static actrls_config_t *json_config;
  62. cJSON * control_profiles = NULL;
  63. static actrls_t default_controls, current_controls;
  64. static actrls_hook_t *default_hook, *current_hook;
  65. static bool default_raw_controls, current_raw_controls;
  66. static actrls_ir_handler_t *default_ir_handler, *current_ir_handler;
  67. static struct {
  68. bool long_state;
  69. bool volume_lock;
  70. TimerHandle_t timer;
  71. bool click_pending;
  72. int left_count;
  73. } rotary;
  74. static const struct ir_action_map_s{
  75. uint32_t code;
  76. actrls_action_e action;
  77. } ir_action_map[] = {
  78. {0x7689b04f, BCTRLS_DOWN}, {0x7689906f, BCTRLS_LEFT}, {0x7689d02f, BCTRLS_RIGHT}, {0x7689e01f, BCTRLS_UP},
  79. {0x768900ff, ACTRLS_VOLDOWN}, {0x7689807f, ACTRLS_VOLUP},
  80. {0x7689c03f, ACTRLS_PREV}, {0x7689a05f, ACTRLS_NEXT},
  81. {0x768920df, ACTRLS_PAUSE}, {0x768910ef, ACTRLS_PLAY},
  82. {0x00, 0x00},
  83. };
  84. /****************************************************************************************
  85. * This function can be called to map IR codes to default actions
  86. */
  87. bool actrls_ir_action(uint16_t addr, uint16_t cmd) {
  88. uint32_t code = (addr << 16) | cmd;
  89. struct ir_action_map_s const *map = ir_action_map;
  90. while (map->code && map->code != code) map++;
  91. if (map->code && current_controls[map->action]) {
  92. current_controls[map->action](true);
  93. return true;
  94. } else {
  95. return false;
  96. }
  97. }
  98. /****************************************************************************************
  99. *
  100. */
  101. static void ir_handler(uint16_t addr, uint16_t cmd) {
  102. ESP_LOGD(TAG, "recaived IR %04hx:%04hx", addr, cmd);
  103. if (current_ir_handler) current_ir_handler(addr, cmd);
  104. }
  105. /****************************************************************************************
  106. *
  107. */
  108. static void set_ir_gpio(int gpio, char *value) {
  109. if (!strcasecmp(value, "ir") ) {
  110. create_infrared(gpio, ir_handler);
  111. }
  112. }
  113. /****************************************************************************************
  114. *
  115. */
  116. esp_err_t actrls_init(const char *profile_name) {
  117. esp_err_t err = ESP_OK;
  118. char *config = config_alloc_get_default(NVS_TYPE_STR, "rotary_config", NULL, 0);
  119. if (config && *config) {
  120. char *p;
  121. int A = -1, B = -1, SW = -1, longpress = 0;
  122. // parse config
  123. if ((p = strcasestr(config, "A")) != NULL) A = atoi(strchr(p, '=') + 1);
  124. if ((p = strcasestr(config, "B")) != NULL) B = atoi(strchr(p, '=') + 1);
  125. if ((p = strcasestr(config, "SW")) != NULL) SW = atoi(strchr(p, '=') + 1);
  126. if ((p = strcasestr(config, "knobonly")) != NULL) {
  127. p = strchr(p, '=');
  128. int double_press = p ? atoi(p + 1) : 350;
  129. rotary.timer = xTimerCreate("knobTimer", double_press / portTICK_RATE_MS, pdFALSE, NULL, rotary_timer);
  130. longpress = 500;
  131. ESP_LOGI(TAG, "single knob navigation %d", double_press);
  132. } else {
  133. if ((p = strcasestr(config, "volume")) != NULL) rotary.volume_lock = true;
  134. if ((p = strcasestr(config, "longpress")) != NULL) longpress = 1000;
  135. }
  136. // create rotary (no handling of long press)
  137. err = create_rotary(NULL, A, B, SW, longpress, control_rotary_handler) ? ESP_OK : ESP_FAIL;
  138. }
  139. // set infrared GPIO if any
  140. parse_set_GPIO(set_ir_gpio);
  141. if (!err) return actrls_init_json(profile_name, true);
  142. else return err;
  143. }
  144. /****************************************************************************************
  145. *
  146. */
  147. static void control_handler(void *client, button_event_e event, button_press_e press, bool long_press) {
  148. actrls_config_t *key = (actrls_config_t*) client;
  149. actrls_action_detail_t action_detail;
  150. // in raw mode, we just do normal action press *and* release, there is no longpress nor shift
  151. if (current_raw_controls) {
  152. ESP_LOGD(TAG, "calling action %u in raw mode", key->normal[0].action);
  153. if (current_controls[key->normal[0].action]) (*current_controls[key->normal[0].action])(event == BUTTON_PRESSED);
  154. return;
  155. }
  156. switch(press) {
  157. case BUTTON_NORMAL:
  158. if (long_press) action_detail = key->longpress[event == BUTTON_PRESSED ? 0 : 1];
  159. else action_detail = key->normal[event == BUTTON_PRESSED ? 0 : 1];
  160. break;
  161. case BUTTON_SHIFTED:
  162. if (long_press) action_detail = key->longshifted[event == BUTTON_PRESSED ? 0 : 1];
  163. else action_detail = key->shifted[event == BUTTON_PRESSED ? 0 : 1];
  164. break;
  165. default:
  166. action_detail.action = ACTRLS_NONE;
  167. break;
  168. }
  169. ESP_LOGD(TAG, "control gpio:%u press:%u long:%u event:%u action:%u", key->gpio, press, long_press, event, action_detail.action);
  170. // stop here if control hook served the request
  171. if (current_hook && (*current_hook)(key->gpio, action_detail.action, event, press, long_press)) return;
  172. // otherwise process using configuration
  173. if (action_detail.action == ACTRLS_REMAP) {
  174. // remap requested
  175. ESP_LOGD(TAG, "remapping buttons to profile %s",action_detail.name);
  176. cJSON * profile_obj = cJSON_GetObjectItem(control_profiles,action_detail.name);
  177. if (profile_obj) {
  178. actrls_config_t *cur_config = (actrls_config_t *) cJSON_GetStringValue(profile_obj);
  179. if (cur_config) {
  180. ESP_LOGD(TAG,"Remapping all the buttons that are found in the new profile");
  181. while (cur_config->gpio != -1) {
  182. ESP_LOGD(TAG,"Remapping button with gpio %u", cur_config->gpio);
  183. button_remap((void*) cur_config, cur_config->gpio, control_handler, cur_config->long_press, cur_config->shifter_gpio);
  184. cur_config++;
  185. }
  186. } else {
  187. ESP_LOGE(TAG,"Profile %s exists, but is empty. Cannot remap buttons",action_detail.name);
  188. }
  189. } else {
  190. ESP_LOGE(TAG,"Invalid profile name %s. Cannot remap buttons",action_detail.name);
  191. }
  192. } else if (action_detail.action != ACTRLS_NONE) {
  193. ESP_LOGD(TAG, "calling action %u", action_detail.action);
  194. if (current_controls[action_detail.action]) (*current_controls[action_detail.action])(event == BUTTON_PRESSED);
  195. }
  196. }
  197. /****************************************************************************************
  198. *
  199. */
  200. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press) {
  201. actrls_action_e action = ACTRLS_NONE;
  202. bool pressed = true;
  203. // in raw mode, we just pass rotary events
  204. if (current_raw_controls) {
  205. if (event == ROTARY_LEFT) (*current_controls[KNOB_LEFT])(true);
  206. else if (event == ROTARY_RIGHT) (*current_controls[KNOB_RIGHT])(true);
  207. else (*current_controls[KNOB_PUSH])(event == ROTARY_PRESSED);
  208. return;
  209. }
  210. switch(event) {
  211. case ROTARY_LEFT:
  212. if (rotary.timer) {
  213. if (rotary.left_count) {
  214. action = KNOB_LEFT;
  215. // need to add a left button the first time
  216. if (rotary.left_count == 1) (*current_controls[KNOB_LEFT])(true);
  217. }
  218. xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  219. rotary.left_count++;
  220. }
  221. else if (rotary.long_state) action = ACTRLS_PREV;
  222. else if (rotary.volume_lock) action = ACTRLS_VOLDOWN;
  223. else action = KNOB_LEFT;
  224. break;
  225. case ROTARY_RIGHT:
  226. if (rotary.timer) {
  227. if (rotary.left_count == 1) {
  228. action = ACTRLS_PAUSE;
  229. rotary.left_count = 0;
  230. xTimerStop(rotary.timer, 0);
  231. } else action = KNOB_RIGHT;
  232. }
  233. else if (rotary.long_state) action = ACTRLS_NEXT;
  234. else if (rotary.volume_lock) action = ACTRLS_VOLUP;
  235. else action = KNOB_RIGHT;
  236. break;
  237. case ROTARY_PRESSED:
  238. if (rotary.timer) {
  239. if (long_press) action = ACTRLS_PLAY;
  240. else if (rotary.click_pending) {
  241. action = BCTRLS_LEFT;
  242. xTimerStop(rotary.timer, 0);
  243. }
  244. else xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  245. rotary.click_pending = !rotary.click_pending;
  246. }
  247. else if (long_press) rotary.long_state = !rotary.long_state;
  248. else if (rotary.volume_lock) action = ACTRLS_TOGGLE;
  249. else action = KNOB_PUSH;
  250. break;
  251. default:
  252. break;
  253. }
  254. if (action != ACTRLS_NONE) (*current_controls[action])(pressed);
  255. }
  256. /****************************************************************************************
  257. *
  258. */
  259. static void rotary_timer( TimerHandle_t xTimer ) {
  260. if (rotary.click_pending) {
  261. (*current_controls[KNOB_PUSH])(true);
  262. rotary.click_pending = false;
  263. } else if (rotary.left_count) {
  264. if (rotary.left_count == 1) (*current_controls[KNOB_LEFT])(true);
  265. rotary.left_count = 0;
  266. }
  267. }
  268. /****************************************************************************************
  269. *
  270. */
  271. static actrls_action_e actrls_parse_action_json(const char * name){
  272. actrls_action_e action = ACTRLS_NONE;
  273. if(!strcasecmp("ACTRLS_NONE",name)) return ACTRLS_NONE;
  274. for(int i=0;i<ACTRLS_MAX && actrls_action_s[i][0]!='\0' ;i++){
  275. if(!strcmp(actrls_action_s[i], name)){
  276. return (actrls_action_e) i;
  277. }
  278. }
  279. // Action name wasn't recognized.
  280. // Check if this is a profile name that has a match in nvs
  281. ESP_LOGD(TAG,"unknown action %s, trying to find matching profile ", name);
  282. cJSON * existing = cJSON_GetObjectItem(control_profiles, name);
  283. if (!existing) {
  284. ESP_LOGD(TAG,"Loading new audio control profile with name: %s", name);
  285. if (actrls_init_json(name, false) == ESP_OK) {
  286. action = ACTRLS_REMAP;
  287. }
  288. } else {
  289. ESP_LOGD(TAG,"Existing profile %s was referenced", name);
  290. action = ACTRLS_REMAP;
  291. }
  292. return action;
  293. }
  294. /****************************************************************************************
  295. *
  296. */
  297. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config,uint32_t offset){
  298. esp_err_t err = ESP_OK;
  299. ESP_LOGD(TAG,"Processing int member");
  300. int *value = (int*)((char*) cur_config + offset);
  301. *value = member->valueint;
  302. return err;
  303. }
  304. /****************************************************************************************
  305. *
  306. */
  307. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  308. esp_err_t err = ESP_OK;
  309. ESP_LOGD(TAG,"Processing type member");
  310. int *value = (int *)((char*) cur_config + offset);
  311. if (member->type == cJSON_String) {
  312. *value =
  313. !strcmp(member->valuestring,
  314. "BUTTON_LOW") ?
  315. BUTTON_LOW : BUTTON_HIGH;
  316. } else {
  317. ESP_LOGE(TAG,
  318. "Button type value expected string value of BUTTON_LOW or BUTTON_HIGH, none found");
  319. err=ESP_FAIL;
  320. }
  321. return err;
  322. }
  323. /****************************************************************************************
  324. *
  325. */
  326. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  327. esp_err_t err = ESP_OK;
  328. if (!member) {
  329. ESP_LOGE(TAG,"Null json member pointer!");
  330. err = ESP_FAIL;
  331. } else {
  332. ESP_LOGD(TAG,"Processing bool member ");
  333. if (cJSON_IsBool(member)) {
  334. bool*value = (bool*)((char*) cur_config + offset);
  335. *value = cJSON_IsTrue(member);
  336. } else {
  337. ESP_LOGE(TAG,"Member %s is not a boolean", member->string?member->string:"unknown");
  338. err = ESP_FAIL;
  339. }
  340. }
  341. return err;
  342. }
  343. /****************************************************************************************
  344. *
  345. */
  346. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  347. esp_err_t err = ESP_OK;
  348. cJSON * button_action= cJSON_GetObjectItemCaseSensitive(member, "pressed");
  349. actrls_action_detail_t*value = (actrls_action_detail_t*)((char *)cur_config + offset);
  350. if (button_action != NULL) {
  351. value[0].action = actrls_parse_action_json( button_action->valuestring);
  352. if(value[0].action == ACTRLS_REMAP){
  353. value[0].name = strdup(button_action->valuestring);
  354. }
  355. }
  356. button_action = cJSON_GetObjectItemCaseSensitive(member, "released");
  357. if (button_action != NULL) {
  358. value[1].action = actrls_parse_action_json( button_action->valuestring);
  359. if (value[1].action == ACTRLS_REMAP){
  360. value[1].name = strdup(button_action->valuestring);
  361. }
  362. }
  363. return err;
  364. }
  365. /****************************************************************************************
  366. *
  367. */
  368. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config) {
  369. esp_err_t err = ESP_OK;
  370. const actrls_config_map_t * h=actrls_config_map;
  371. char * str = cJSON_Print(member);
  372. while (h->handler && strcmp(member->string, h->member)) { h++; }
  373. if (h->handler) {
  374. ESP_LOGD(TAG,"found handler for member %s, json value %s", h->member,str?str:"");
  375. err = h->handler(member, cur_config, h->offset);
  376. } else {
  377. err = ESP_FAIL;
  378. ESP_LOGE(TAG, "Unknown json structure member : %s", str?str:"");
  379. }
  380. if (str) free(str);
  381. return err;
  382. }
  383. /****************************************************************************************
  384. *
  385. */
  386. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config) {
  387. esp_err_t err= ESP_OK;
  388. const cJSON *member;
  389. cJSON_ArrayForEach(member, button)
  390. {
  391. ESP_LOGD(TAG,"Processing member %s. ", member->string);
  392. esp_err_t loc_err = actrls_process_member(member, cur_config);
  393. err = (err == ESP_OK) ? loc_err : err;
  394. }
  395. return err;
  396. }
  397. /****************************************************************************************
  398. *
  399. */
  400. static actrls_config_t * actrls_init_alloc_structure(const cJSON *buttons, const char * name){
  401. int member_count = 0;
  402. const cJSON *button;
  403. actrls_config_t * json_config=NULL;
  404. // Check if the main profiles array was created
  405. if(!control_profiles){
  406. control_profiles = cJSON_CreateObject();
  407. }
  408. ESP_LOGD(TAG,"Counting the number of buttons definition");
  409. cJSON_ArrayForEach(button, buttons) {
  410. member_count++;
  411. }
  412. ESP_LOGD(TAG, "config contains %u button definitions", member_count);
  413. if (member_count != 0) {
  414. json_config = calloc(sizeof(actrls_config_t) * (member_count + 1), 1);
  415. if (json_config){
  416. json_config[member_count].gpio = -1;
  417. } else {
  418. ESP_LOGE(TAG,"Unable to allocate memory to hold configuration for %u buttons ",member_count);
  419. }
  420. } else {
  421. ESP_LOGE(TAG,"No button found in configuration structure");
  422. }
  423. // we're cheating here; we're going to store the control profile
  424. // pointer as a string reference; this will prevent cJSON
  425. // from trying to free the structure if we ever want to free the object
  426. cJSON * new_profile = cJSON_CreateStringReference((const char *)json_config);
  427. cJSON_AddItemToObject(control_profiles, name, new_profile);
  428. return json_config;
  429. }
  430. /****************************************************************************************
  431. *
  432. */
  433. static void actrls_defaults(actrls_config_t *config) {
  434. config->type = BUTTON_LOW;
  435. config->pull = false;
  436. config->debounce = 0;
  437. config->long_press = 0;
  438. config->shifter_gpio = -1;
  439. config->normal[0].action = config->normal[1].action = ACTRLS_NONE;
  440. config->longpress[0].action = config->longpress[1].action = ACTRLS_NONE;
  441. config->shifted[0].action = config->shifted[1].action = ACTRLS_NONE;
  442. config->longshifted[0].action = config->longshifted[1].action = ACTRLS_NONE;
  443. }
  444. /****************************************************************************************
  445. *
  446. */
  447. static esp_err_t actrls_init_json(const char *profile_name, bool create) {
  448. esp_err_t err = ESP_OK;
  449. actrls_config_t *cur_config = NULL;
  450. actrls_config_t *config_root = NULL;
  451. char *config;
  452. const cJSON *button;
  453. if (!profile_name || !*profile_name) return ESP_OK;
  454. config = config_alloc_get_default(NVS_TYPE_STR, profile_name, NULL, 0);
  455. if(!config) return ESP_FAIL;
  456. ESP_LOGD(TAG,"Parsing JSON structure %s", config);
  457. cJSON *buttons = cJSON_Parse(config);
  458. if (buttons == NULL) {
  459. ESP_LOGE(TAG,"JSON Parsing failed for %s", config);
  460. err = ESP_FAIL;
  461. } else {
  462. ESP_LOGD(TAG,"Json parsing completed");
  463. if (cJSON_IsArray(buttons)) {
  464. ESP_LOGD(TAG,"configuration is an array as expected");
  465. cur_config =config_root= actrls_init_alloc_structure(buttons, profile_name);
  466. if(!cur_config) {
  467. ESP_LOGE(TAG,"Config buffer was empty. ");
  468. cJSON_Delete(buttons);
  469. return ESP_FAIL;
  470. }
  471. ESP_LOGD(TAG,"Processing button definitions. ");
  472. cJSON_ArrayForEach(button, buttons){
  473. char * str = cJSON_Print(button);
  474. ESP_LOGD(TAG,"Processing %s. ", str?str:"");
  475. if(str){
  476. free(str);
  477. }
  478. actrls_defaults(cur_config);
  479. esp_err_t loc_err = actrls_process_button(button, cur_config);
  480. err = (err == ESP_OK) ? loc_err : err;
  481. if (loc_err == ESP_OK) {
  482. if (create) button_create((void*) cur_config, cur_config->gpio,cur_config->type,
  483. cur_config->pull,cur_config->debounce, control_handler,
  484. cur_config->long_press, cur_config->shifter_gpio);
  485. } else {
  486. ESP_LOGE(TAG,"Error parsing button structure. Button will not be registered.");
  487. }
  488. cur_config++;
  489. }
  490. } else {
  491. ESP_LOGE(TAG,"Invalid configuration; array is expected and none received in %s ", config);
  492. }
  493. cJSON_Delete(buttons);
  494. }
  495. // Now update the global json_config object. If we are recursively processing menu structures,
  496. // the last init that completes will assigh the first json config object found, which will match
  497. // the default config from nvs.
  498. json_config = config_root;
  499. return err;
  500. }
  501. /****************************************************************************************
  502. *
  503. */
  504. void actrls_set_default(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  505. memcpy(default_controls, controls, sizeof(actrls_t));
  506. memcpy(current_controls, default_controls, sizeof(actrls_t));
  507. default_hook = current_hook = hook;
  508. default_raw_controls = current_raw_controls = raw_controls;
  509. default_ir_handler = current_ir_handler = ir_handler;
  510. }
  511. /****************************************************************************************
  512. *
  513. */
  514. void actrls_set(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  515. memcpy(current_controls, controls, sizeof(actrls_t));
  516. current_hook = hook;
  517. current_raw_controls = raw_controls;
  518. current_ir_handler = ir_handler;
  519. }
  520. /****************************************************************************************
  521. *
  522. */
  523. void actrls_unset(void) {
  524. memcpy(current_controls, default_controls, sizeof(actrls_t));
  525. current_hook = default_hook;
  526. current_raw_controls = default_raw_controls;
  527. current_ir_handler = default_ir_handler;
  528. }