We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b850c1a commit 10ce26cCopy full SHA for 10ce26c
zephyr/samples/profiles/b-ld/src/main.c
@@ -90,6 +90,11 @@ void BACnet_Lighting_Output_Tracking_Value_Handler(
90
led = object_instance - 1U;
91
}
92
err = led_set_brightness(led_pwm, led, steps);
93
+ if (err < 0) {
94
+ LOG_ERR(
95
+ "Failed to set brightness of LED %u to %u: %d", (unsigned)led,
96
+ (unsigned)steps, err);
97
+ }
98
99
100
/**
0 commit comments