mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-27 11:02:40 +00:00
19 lines
407 B
C++
19 lines
407 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#pragma once
|
|
#include "home_indicator/home_indicator.h"
|
|
#include "loading_page/loading_page.h"
|
|
#include "status_bar/status_bar.h"
|
|
#include "reminder/reminder.h"
|
|
#include "toast/toast.h"
|
|
#include <string_view>
|
|
|
|
namespace common {
|
|
|
|
inline constexpr std::string_view FirmwareVersion = "V" FIRMWARE_VERSION;
|
|
|
|
}
|