brightwheel 0.1.2

Windows tray utility for DDC/CI monitor brightness and HDR control
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Windows monitor controls used by the `BrightWheel` tray and CLI applications.
//!
//! Brightness is controlled through DDC/CI. HDR and autostart use native
//! Windows APIs and always target the primary display or the current user.

#![cfg(windows)]

mod ddc;
mod error;
mod wide;

/// Per-user Windows autostart configuration.
pub mod autostart;
/// HDR state for the primary Windows display.
pub mod hdr;

pub use ddc::{BRIGHTNESS_VCP_CODE, Brightness, MonitorInfo, capabilities, change, get, list, set};
pub use error::{DdcError, Result};