Use bluetooth symbol instead of wifi
This commit is contained in:
parent
43f6d798be
commit
4b41d06832
1 changed files with 3 additions and 3 deletions
|
@ -49,12 +49,12 @@ void set_status_symbol(lv_obj_t *label) {
|
|||
case ZMK_ENDPOINT_BLE:
|
||||
if (active_profie_bonded) {
|
||||
if (active_profile_connected) {
|
||||
sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_OK, active_profile_index);
|
||||
sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_OK, active_profile_index);
|
||||
} else {
|
||||
sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_CLOSE, active_profile_index);
|
||||
sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_CLOSE, active_profile_index);
|
||||
}
|
||||
} else {
|
||||
sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_SETTINGS, active_profile_index);
|
||||
sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_SETTINGS, active_profile_index);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue