Browse Source

Fix low contrast on Minipanel display (#17601)

Thomas Hollstegge 5 years ago
parent
commit
b55dd2cb82
No account linked to committer's email address
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/src/inc/Conditionals_post.h

+ 3
- 1
Marlin/src/inc/Conditionals_post.h View File

@@ -289,8 +289,10 @@
289 289
 #elif ENABLED(ULTI_CONTROLLER)
290 290
   #define _LCD_CONTRAST_INIT 127
291 291
   #define _LCD_CONTRAST_MAX  254
292
-#elif EITHER(MAKRPANEL, MINIPANEL)
292
+#elif ENABLED(MAKRPANEL)
293 293
   #define _LCD_CONTRAST_INIT  17
294
+#elif ENABLED(MINIPANEL)
295
+  #define _LCD_CONTRAST_INIT  150
294 296
 #endif
295 297
 
296 298
 #ifdef _LCD_CONTRAST_INIT

Loading…
Cancel
Save