Skip to content

Commit

Permalink
Merge pull request #201 from rzeldent:200-enhancement-for-pwmd-rgb-led
Browse files Browse the repository at this point in the history
200-enhancement-for-pwmd-rgb-led
  • Loading branch information
rzeldent authored Sep 14, 2024
2 parents f90fe30 + 1fe2870 commit 08d0ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/esp32_smartdisplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void smartdisplay_lcd_set_brightness_cb(smartdisplay_lcd_adaptive_brightness_cb_
#ifdef BOARD_HAS_RGB_LED
void smartdisplay_led_set_rgb(bool r, bool g, bool b)
{
log_d("R:%d, G:%d, B:%d", r, b, b);
log_d("R:%d, G:%d, B:%d", r, g, b);

digitalWrite(RGB_LED_R, !r);
digitalWrite(RGB_LED_G, !g);
Expand Down

0 comments on commit 08d0ce2

Please sign in to comment.