Reset button is a hardware button on Arduino UNO board. On pressing reset button it stops whatever the software might be doing and start the code from an initial level.
Power USB can be used in two different ways:
RX and TX pins stand for Receiving and Transmitting pins of Arduino used for Serial communication. TX and RX LED are connected to pin no 0 and 1 thus whenever the Arduino send or receive data over serial pins, the LED connected to TX and RX blinks respectively.
0 and 1 are the default RX and TX pin of Arduino although you can make your own RX and TX by using “SoftwareSerial” library.
Voltage regulator stabilize the DC voltage used by different elements of Arduino. Basically it’s a controller to control voltage supply provided from any source outside the Arduino environment.
Arduino can be also powered via Barrel jack in case you want it to be powered directly via AC mains power.
Vin: This pin can be used in two different ways:
3.3v: Provide a 3.3 output volt.
5v: Provide a 5 output volt.
GND: Provide ground to your circuit.
Reset PIN: Reset pin is same as reset button you can set it high to start program in arduino from initial level or from start.
The Arduino UNO has 6 pins from A0 to A5 for receiving analog inputs from sensors like temp and humidity. Analog pins in Arduino Uno is labeled as A0 to A5 they take analog input and convert it into digital signal for microcontroller. Analog pins return value between 0 to 1023 this is because of built in 10 bit analog to digital converter.
Microcontroller is the main processing unit where all the input/output operation is performed. Arduino UNO is a microcontroller board based on the ATmega328P from Atmel Company.
If you look carefully in the image below, you would find that these pins corresponds to MISO, MOSI, SCK, Reset, VCC, GND
Provide an alternative for programming the board other than USB.
The power led is an indicator which ensure that the board is in “ON” state.
Arduino Uno is built for beginners and Arduino ensures that one can get started without an external input or output. For this Arduino provide an inbuilt LED in case you don’t have any or you don’t want to attach one. The inbuilt LED work on PIN NO 13 of Arduino board you can set PIN NO 13 to HIGH or LOW to make the led ON and OFF.
AREF refer to analog reference which is used to set an external voltage reference for upper limit of an analog input pins. By default it is 5v.