हाल ही में मैंने अपने Arduino Uno में एक विशिष्ट 16 * 2 एलसीडी (लिक्विड क्रिस्टल डिस्प्ले) डिस्प्ले को जोड़ा है और सभी पिन अप को लिंक किया है।
यहाँ मेरा कनेक्शन है: (एलसीडी पिन पहले)
1 = जीएनडी, 2 = + 5 वी, 4 = 11, 6 = 12, 11 = 5, 12 = 4, 12 = 3, 14 = 2, 15 = बैकलाइट पॉजिटिव, 16 = बैकलाइट नकारात्मक
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis()/1000);
}
यह वह कोड है जो एलसीडी के लिए डिफ़ॉल्ट है, मैंने इसे नहीं लिखा था।
इसलिए मैंने यह सब किया है और जब मैं इसे चालू करता हूं तो स्क्रीन खाली है और कुछ भी नहीं हो रहा है। क्या कोई समझा सकता है कि मैंने क्या गलत किया है?