// Test for the Discord channel.
// A new project
// Added the library for the display.
// Print char(127)
//
// Result: no problem
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
lcd.init();
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Hello ");
lcd.print(char(127));
lcd.print(" A");
}
void loop()
{
delay(10);
}