//Change the color of Text on LCD using Diagram.json change text color to white, black,red, blue, Pink, Purple,etc
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
int i, j;
lcd.init();
lcd.backlight();
Serial.begin(9600);
lcd.setCursor(0, 0);
for (i = 1; i <= 3; i++) {
for (j = 1; j <= i; j++) {
lcd.print(i);
}
lcd.print(" ");
}
}
void loop() {
// put your main code here, to run repeatedly:
}