Browse Source

Tweak some LCD comments

Scott Lahteine 7 years ago
parent
commit
228139eae6
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/lcd/ultralcd_common_HD44780.h

+ 2
- 2
Marlin/src/lcd/ultralcd_common_HD44780.h View File

128
 ////////////////////////////////////
128
 ////////////////////////////////////
129
 // Create LCD class instance and chipset-specific information
129
 // Create LCD class instance and chipset-specific information
130
 #if ENABLED(LCD_I2C_TYPE_PCF8575)
130
 #if ENABLED(LCD_I2C_TYPE_PCF8575)
131
-  // note: these are register mapped pins on the PCF8575 controller not Arduino pins
131
+  // NOTE: These are register-mapped pins on the PCF8575 controller, not Arduino pins.
132
   #define LCD_I2C_PIN_BL  3
132
   #define LCD_I2C_PIN_BL  3
133
   #define LCD_I2C_PIN_EN  2
133
   #define LCD_I2C_PIN_EN  2
134
   #define LCD_I2C_PIN_RW  1
134
   #define LCD_I2C_PIN_RW  1
144
   #define LCD_CLASS LiquidCrystal_I2C
144
   #define LCD_CLASS LiquidCrystal_I2C
145
 
145
 
146
 #elif ENABLED(LCD_I2C_TYPE_MCP23017)
146
 #elif ENABLED(LCD_I2C_TYPE_MCP23017)
147
-  //for the LED indicators (which maybe mapped to different things in lcd_implementation_update_indicators())
147
+  // For the LED indicators (which may be mapped to different events in lcd_implementation_update_indicators())
148
   #define LED_A 0x04 //100
148
   #define LED_A 0x04 //100
149
   #define LED_B 0x02 //010
149
   #define LED_B 0x02 //010
150
   #define LED_C 0x01 //001
150
   #define LED_C 0x01 //001

Loading…
Cancel
Save