mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-18 19:10:03 -05:00
15 lines
412 B
C++
15 lines
412 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "ServiceEinkApi.hpp"
|
|
|
|
#include "internal/StaticData.hpp"
|
|
|
|
namespace service::eink::api
|
|
{
|
|
[[nodiscard]] auto isInvertedModeEnabled() noexcept -> bool
|
|
{
|
|
return internal::StaticData::get().isInvertedModeEnabled();
|
|
}
|
|
} // namespace service::eink::api
|