blob: e11f1dc6ea443a3c27a15f8ab01e7099ff9c9e25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stdio.h>
#include "pico/stdlib.h"
#include "main.hpp"
BaseApp::AppReturnValues app_tests::render(Api *app_api) {
app_api->gui_header_text("App for testing APIs.");
return AppReturnValues::OK;
}
BaseApp::AppReturnValues app_tests::btn_pressed(Api *app_api, uint gpio, unsigned long delta) {
return AppReturnValues::OK;
}
app_tests::app_tests(Api *app_api) {
app_api->performance_set(Api::perf_modes::LOW_POWER);
}
BaseApp::AppReturnValues app_tests::bgrefresh(Api *app_api, bool in_foreground) {
return AppReturnValues::OK;
}
app_tests::~app_tests() {
}
|