36 lines
948 B
C
36 lines
948 B
C
/*
|
|
* This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
* Unless required by applicable law or agreed to in writing, this
|
|
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
* CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// For pin mappings.
|
|
#include "hardware.h"
|
|
// For graphics.
|
|
#include "pax_gfx.h"
|
|
// For PNG images.
|
|
#include "pax_codecs.h"
|
|
// The screen driver.
|
|
#include "ili9341.h"
|
|
// For all system settings and alike.
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/queue.h"
|
|
#include "esp_system.h"
|
|
#include "nvs.h"
|
|
#include "nvs_flash.h"
|
|
// For WiFi connectivity.
|
|
#include "wifi_connect.h"
|
|
#include "wifi_connection.h"
|
|
// For exiting to the launcher.
|
|
#include "soc/rtc.h"
|
|
#include "soc/rtc_cntl_reg.h"
|
|
|
|
// Updates the screen with the last drawing.
|
|
void disp_flush();
|
|
|
|
// Exits the app, returning to the launcher.
|
|
void exit_to_launcher();
|