2022-06-02 23:30:50 +00:00
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
// This file contains a simple hello world app which you can base you own apps on.
|
2022-05-30 21:56:23 +00:00
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
#include "main.h"
|
2022-05-16 21:07:30 +00:00
|
|
|
|
2022-06-08 17:26:34 +00:00
|
|
|
static pax_buf_t buf;
|
2022-06-08 14:24:28 +00:00
|
|
|
xQueueHandle buttonQueue;
|
2022-01-01 02:06:55 +00:00
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
static const char *TAG = "mch2022-demo-app";
|
2022-05-12 22:13:14 +00:00
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
void disp_flush() {
|
2022-06-08 17:26:34 +00:00
|
|
|
ili9341_write(get_ili9341(), buf.buf);
|
2022-06-06 02:01:49 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 21:14:16 +00:00
|
|
|
void exit_to_launcher() {
|
|
|
|
REG_WRITE(RTC_CNTL_STORE0_REG, 0);
|
|
|
|
esp_restart();
|
|
|
|
}
|
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
void app_main() {
|
|
|
|
// Init HW.
|
|
|
|
bsp_init();
|
|
|
|
bsp_rp2040_init();
|
|
|
|
buttonQueue = get_rp2040()->queue;
|
2022-06-03 05:17:22 +00:00
|
|
|
|
2022-06-08 14:24:28 +00:00
|
|
|
// Init GFX.
|
2022-06-08 17:26:34 +00:00
|
|
|
pax_buf_init(&buf, NULL, 320, 240, PAX_BUF_16_565RGB);
|
2022-06-05 23:07:58 +00:00
|
|
|
|
2022-06-20 21:10:24 +00:00
|
|
|
// Init NVS.
|
|
|
|
nvs_flash_init();
|
|
|
|
|
|
|
|
// Init (but not connect to) WiFi.
|
|
|
|
wifi_init();
|
|
|
|
|
2022-06-08 17:26:34 +00:00
|
|
|
while (1) {
|
|
|
|
// Pick a random background color.
|
|
|
|
int hue = esp_random() & 255;
|
|
|
|
pax_col_t col = pax_col_hsv(hue, 255 /*saturation*/, 255 /*brighness*/);
|
|
|
|
|
|
|
|
// Show some random color hello world.
|
|
|
|
pax_background(&buf, col);
|
|
|
|
char *text = "Hello, World!";
|
|
|
|
const pax_font_t *font = pax_get_font("saira condensed");
|
|
|
|
pax_vec1_t dims = pax_text_size(font, font->default_size, text);
|
|
|
|
pax_draw_text(
|
|
|
|
&buf, 0xff000000, font, font->default_size,
|
|
|
|
(buf.width - dims.x) / 2.0,
|
|
|
|
(buf.height - dims.y) / 2.0,
|
|
|
|
text
|
|
|
|
);
|
|
|
|
disp_flush();
|
|
|
|
|
|
|
|
// Await any button press and do another cycle.
|
|
|
|
rp2040_input_message_t message;
|
|
|
|
xQueueReceive(buttonQueue, &message, portMAX_DELAY);
|
2022-06-20 21:14:16 +00:00
|
|
|
|
|
|
|
if (message.input == RP2040_INPUT_BUTTON_HOME && message.state) {
|
|
|
|
// If home is pressed, exit to launcher.
|
|
|
|
exit_to_launcher();
|
|
|
|
}
|
2022-06-08 17:26:34 +00:00
|
|
|
}
|
2021-12-29 17:34:55 +00:00
|
|
|
}
|