Important Notice:

Course Content
Building IoT Applications (Chapter-4) M4-R5.1
About Lesson

Input and Output (I/O) Pins:-

              आपके Arduino पर पिन वे स्थान हैं जहां आप सर्किट बनाने के लिए wires को जोड़ते हैं Arduino में कई अलग-अलग प्रकार के पिन होते हैं, जिसमें से प्रत्येक को बोर्ड पर लेबल किया जाता है और अलग अलग फंक्शन के लिए उपयोग किया जाता है।

GND: circuit को ground करने के लिए इस बोर्ड में तीन GND है।

5V – 3.3V: दूसरे component जो uno के साथे आप interface करेंगे उनको आप 5 volt या 3.3 volt supply यह पिन से दे सकते है।

ANALOG  IN (A0-A5):  यह pins analog sensors से input लेके digital में कन्वर्ट करेंगी जिससे प्रोसेस करके कुछ output दे पायेंगे। ये पिन एक एनालॉग सेंसर जैसे तापमान सेंसर के सिग्नल को पढ़ सकते हैं और इसे सिस्टम समझ के लिए डिजिटल रूप  में बदल सकते हैं।

DIGITAL(0-13): इन पिनों को इनपुट या आउटपुट पिंस के रूप में उपयोग किया जा सकता है। आउटपुट के रूप में उपयोग किए जाने पर, ये पिन इससे जुड़े devices के लिए power supply source के रूप में कार्य करते हैं और जब इनपुट पिन के रूप में उपयोग किया जाता है, तो वे उनसे जुड़े devices से प्राप्त signals को पढ़ते हैं।

PWM(~):  कुछ digital pins (पिन नंबर 3 5 6 9 10 और 11)  के ऊपर टिल्ड (~) का निशान है। ये पिन सामान्य डिजिटल पिन के रूप में कार्य करते हैं, लेकिन Pulse Width Modulation (PWM) के लिए भी इस्तेमाल किया जा सकता है, जो  AnalogWrite () फ़ंक्शन के साथ 8-बिट PWM आउटपुट प्रदान करते हैं।

 

Input and Output (I/O) Pins:-

The pins on your Arduino are the places where you connect wires to create a circuit. Arduino has several different types of pins, each of which is labeled on the board and used for a different function.

GND: This board has three GNDs to ground the circuit.

5V – 3.3V: You can provide 5 volt or 3.3 volt supply to other components which you will interface with the uno through this pin.

ANALOG  IN (A0-A5):  These pins will take input from analog sensors and convert it into digital so that they can process it and give some output. These pins can read the signal from an analog sensor such as a temperature sensor and convert it into digital form for system understanding.

DIGITAL(0-13): These pins can be used as input or output pins. When used as outputs, these pins act as power supply sources for the devices connected to them and when used as input pins, they read signals received from the devices connected to them.

PWM(~):  Some digital pins (pin numbers 3 5 6 9 10 and 11) have a tilde (~) mark on them. These pins function as normal digital pins, but can also be used for Pulse Width Modulation (PWM), providing an 8-bit PWM output with an AnalogWrite() function.

error: Content is protected !!