Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Patch for the error: Verification failed for feature 10 #20

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/ddcci_plasmoid_backend/ddcci.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def fetch_monitor_data(node: Node) -> MonitorData:


def set_brightness(bus_id: int, brightness: int) -> None:
subprocess_wrapper(f'ddcutil setvcp --bus {bus_id} {brightness_feature_code:x} {brightness}')
subprocess_wrapper(f'ddcutil setvcp --noverify --bus {bus_id} {brightness_feature_code:x} {brightness}')


def get_EDID_value(node: Node, value: str) -> Optional[str]:
Expand Down