| 46 | } |
| 47 | |
| 48 | static void onScanButtonClicked(lv_event_t* event) { |
| 49 | auto bt = std::static_pointer_cast<BtManage>(getCurrentApp()); |
| 50 | Device* dev = device_find_first_active_by_type(&BLUETOOTH_TYPE); |
| 51 | bool scanning = dev ? bluetooth_is_scanning(dev) : false; |
| 52 | bt->getBindings().onScanToggled(!scanning); |
| 53 | } |
| 54 | |
| 55 | // region Peer list callbacks |
| 56 |
nothing calls this directly
no test coverage detected