Report Bug
Qus : How can you display text on the first row of a 16x2 LCD?
Qusआप 16x2 एलसीडी की फर्स्ट रो पर टेक्स्ट कैसे डिस्प्ले कर सकते हैं?

A. Use lcd.setCursor(0, 0) and lcd.print("Text").
B. Use lcd.begin(0, 0) and lcd.display("Text").
C. Use lcd.print(0, "Text")
D. Use lcd.text("Text", 0)


Solution
A. Use lcd.setCursor(0, 0) and lcd.print("Text").






Report Bug