| 62 | } |
| 63 | |
| 64 | void ChatApp::onShow(AppContext& context, lv_obj_t* parent) { |
| 65 | view.init(context, parent); |
| 66 | if (isFirstLaunch) { |
| 67 | view.showSettings(settings); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void ChatApp::onReceive(const esp_now_recv_info_t* receiveInfo, const uint8_t* data, int length) { |
| 72 | if (length <= 0) return; |
no test coverage detected