custom key mappings
This commit is contained in:
parent
f64468868c
commit
f0bf978454
|
@ -150,17 +150,17 @@ void app_key_double_tap(APP_KEY_STATUS *status, void *param) {
|
||||||
if (!app_tws_ibrt_tws_link_connected()) {
|
if (!app_tws_ibrt_tws_link_connected()) {
|
||||||
// No other bud paired
|
// No other bud paired
|
||||||
TRACE(0, "Handling %s in single bud mode", __func__);
|
TRACE(0, "Handling %s in single bud mode", __func__);
|
||||||
send_next_track();
|
send_vol_down();
|
||||||
} else {
|
} else {
|
||||||
// Bud's are working as a pair
|
// Bud's are working as a pair
|
||||||
if (app_tws_is_left_side()) {
|
if (app_tws_is_left_side()) {
|
||||||
TRACE(0, "Handling %s as left bud", __func__);
|
TRACE(0, "Handling %s as left bud", __func__);
|
||||||
// Lefty
|
// Lefty
|
||||||
send_prev_track();
|
send_vol_down();
|
||||||
} else {
|
} else {
|
||||||
TRACE(0, "Handling %s as right bud", __func__);
|
TRACE(0, "Handling %s as right bud", __func__);
|
||||||
// Righty
|
// Righty
|
||||||
send_next_track();
|
send_vol_up();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -172,7 +172,7 @@ void app_key_triple_tap(APP_KEY_STATUS *status, void *param) {
|
||||||
// No other bud paired
|
// No other bud paired
|
||||||
TRACE(0, "Handling %s in single bud mode", __func__);
|
TRACE(0, "Handling %s in single bud mode", __func__);
|
||||||
send_vol_up();
|
send_vol_up();
|
||||||
} else {
|
}/* else {
|
||||||
// Bud's are working as a pair
|
// Bud's are working as a pair
|
||||||
if (app_tws_is_left_side()) {
|
if (app_tws_is_left_side()) {
|
||||||
TRACE(0, "Handling %s as left bud", __func__);
|
TRACE(0, "Handling %s as left bud", __func__);
|
||||||
|
@ -183,9 +183,9 @@ void app_key_triple_tap(APP_KEY_STATUS *status, void *param) {
|
||||||
// Righty
|
// Righty
|
||||||
send_vol_up();
|
send_vol_up();
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
void app_key_quad_tap(APP_KEY_STATUS *status, void *param) {
|
/*void app_key_quad_tap(APP_KEY_STATUS *status, void *param) {
|
||||||
TRACE(2, "%s event %d", __func__, status->event);
|
TRACE(2, "%s event %d", __func__, status->event);
|
||||||
|
|
||||||
if (!app_tws_ibrt_tws_link_connected()) {
|
if (!app_tws_ibrt_tws_link_connected()) {
|
||||||
|
@ -202,7 +202,7 @@ void app_key_quad_tap(APP_KEY_STATUS *status, void *param) {
|
||||||
// Righty
|
// Righty
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
void app_key_long_press_down(APP_KEY_STATUS *status, void *param) {
|
void app_key_long_press_down(APP_KEY_STATUS *status, void *param) {
|
||||||
TRACE(2, "%s event %d", __func__, status->event);
|
TRACE(2, "%s event %d", __func__, status->event);
|
||||||
|
@ -210,7 +210,7 @@ void app_key_long_press_down(APP_KEY_STATUS *status, void *param) {
|
||||||
if (!app_tws_ibrt_tws_link_connected()) {
|
if (!app_tws_ibrt_tws_link_connected()) {
|
||||||
// No other bud paired
|
// No other bud paired
|
||||||
TRACE(0, "Handling %s in single bud mode", __func__);
|
TRACE(0, "Handling %s in single bud mode", __func__);
|
||||||
send_prev_track();
|
//send_prev_track();
|
||||||
} else {
|
} else {
|
||||||
// Bud's are working as a pair
|
// Bud's are working as a pair
|
||||||
send_enable_disable_anc();
|
send_enable_disable_anc();
|
||||||
|
@ -237,10 +237,10 @@ void app_key_init(void) {
|
||||||
"",
|
"",
|
||||||
app_key_triple_tap,
|
app_key_triple_tap,
|
||||||
NULL},
|
NULL},
|
||||||
{{APP_KEY_CODE_PWR, APP_KEY_EVENT_ULTRACLICK},
|
/*{{APP_KEY_CODE_PWR, APP_KEY_EVENT_ULTRACLICK},
|
||||||
"",
|
"",
|
||||||
app_key_quad_tap,
|
app_key_quad_tap,
|
||||||
NULL},
|
NULL},*/
|
||||||
{{APP_KEY_CODE_PWR, APP_KEY_EVENT_LONGPRESS},
|
{{APP_KEY_CODE_PWR, APP_KEY_EVENT_LONGPRESS},
|
||||||
"",
|
"",
|
||||||
app_key_long_press_down,
|
app_key_long_press_down,
|
||||||
|
|
Loading…
Reference in New Issue