You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
384 B
13 lines
384 B
-- SPDX-FileCopyrightText: 2023 jacqueline <me@jacqueline.id.au>
|
|
--
|
|
-- SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
--- @meta
|
|
|
|
--- The `display` module contains Properties relating to the device's physical
|
|
--- display.
|
|
--- @class display
|
|
--- @field brightness Property The screen's current brightness, as a gamma-corrected percentage value from 0 to 100.
|
|
local display = {}
|
|
|
|
return display
|
|
|