#vcp #mccs #ddc #vesa

mccs-db

MCCS specification VCP database

7 releases

0.2.0 Feb 16, 2023
0.1.3 Feb 16, 2023
0.1.2 Mar 27, 2018
0.0.2 Mar 25, 2018

#2040 in Hardware support

Download history 89/week @ 2024-12-21 55/week @ 2024-12-28 147/week @ 2025-01-04 223/week @ 2025-01-11 176/week @ 2025-01-18 93/week @ 2025-01-25 124/week @ 2025-02-01 172/week @ 2025-02-08 185/week @ 2025-02-15 309/week @ 2025-02-22 209/week @ 2025-03-01 193/week @ 2025-03-08 292/week @ 2025-03-15 242/week @ 2025-03-22 124/week @ 2025-03-29 121/week @ 2025-04-05

814 downloads per month
Used in 7 crates (3 directly)

MIT license

39KB
775 lines

Monitor Command Control Set VCP feature code meanings and data interpretation.

Example

use mccs_db::Database;

// Read the capabilities from an external source, such as a monitor over DDC.
let caps = mccs_caps::parse_capabilities(read_display_capability_string()).unwrap();

// Load the MCCS version spec and filter by the monitor's capabilities
let mut db = Database::from_version(caps.mccs_version.as_ref().unwrap());
db.apply_capabilities(&caps);

println!("Display Capabilities: {:#?}", db);

MCCS Database

release-badge docs-badge license-badge

mccs-db contains the human-readable descriptions of VCP features from the MCCS spec.

Documentation

See the documentation for up to date information.

Dependencies

~2.6–3.5MB
~74K SLoC