/*
Forum: https://forum.arduino.cc/t/printing-symbols-to-lcd-screen/1235998
Wokwi: https://wokwi.com/projects/392443755178679297
*/
#include <LiquidCrystal.h>
// Initialize the LCD screen
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// Set up the LCD screen
lcd.begin(16, 2);
lcd.clear();
lcd.print(cMicro());
lcd.print("Farad,");
delay(1000);
}
void loop() {
}
char cMicro(){
return char(228);
}