This document provides a detailed overview of a circuit that includes an Arduino UNO, a red LED, a USB male 2-pin connection, and an FC-51 IR Obstacle Sensor. The circuit is designed to interface these components with the Arduino UNO, allowing for basic input and output operations.
GND is connected to:
D12 is connected to:
5V is connected to:
Vin is connected to:
D11 is connected to:
cathode is connected to:
anode is connected to:
Negative - is connected to:
Positive + is connected to:
Out is connected to:
GND is connected to:
VCC is connected to:
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
This code is a basic template for the Arduino UNO. The setup()
function is where you initialize your settings, and the loop()
function is where you place the main code that runs repeatedly.
This section is reserved for any additional documentation that may be required for the project. Currently, it is empty.