Arduino के साथ प्रदान किए गए HelloWorld स्केच को चलाने के लिए, आपको Arduino IDE में किन चरणों का पालन करना चाहिए?
To run the HelloWorld sketch provided with Arduino, which steps should you follow in the Arduino IDE?
A
Tools → Serial Monitor → HelloWorld
B
File → Open → HelloWorld.ino
C
File → Examples → Library → LiquidCrystal → HelloWorld
D
Sketch → Upload → LiquidCrystal
Explanation
The correct answer is:
c) File → Examples → Library → LiquidCrystal → HelloWorld
Explanation:
To run the HelloWorld sketch provided with Arduino:
- Open the Arduino IDE.
- Navigate to File → Examples → Library → LiquidCrystal → HelloWorld.
- This opens the HelloWorld example sketch for the LiquidCrystal library, which demonstrates how to display "Hello, World!" on an LCD.
- You can then upload the sketch to your Arduino board.
Correct Answer: C) File → Examples → Library → LiquidCrystal → HelloWorld