| 260 | } |
| 261 | |
| 262 | static void addDevices(lv_obj_t* parent) { |
| 263 | auto devices = hal::getDevices(); |
| 264 | for (const auto& device: devices) { |
| 265 | addDevice(parent, device); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | static lv_obj_t* createTab(lv_obj_t* tabview, const char* name) { |
| 270 | auto* tab = lv_tabview_add_tab(tabview, name); |
no test coverage detected