Skip to Content
Arduino Kit Manual - Aarksh Systems

Enter Your Manual Code


Arduino Uno Kit Manual

Powered by Aarksh Systems

📦 Kit Components

  • Arduino Uno Board – The brain of your projects
  • Acrylic Box – Protective casing for the board
  • 400-point Breadboard – For circuit assembly
  • Jumper Wires (20 pcs) – Easy connections
  • Ultrasonic Sensor – For measuring distance
  • IR Sensor – For object detection
  • Joystick Module – Create game controllers
  • Traffic Light Module – Simulate traffic signals
  • 9V Battery & Clip – Power your projects
  • USB Uno Cable – Programming interface
  • Stickers – For personalization

🚀 Getting Started with Arduino Uno

  1. Download and install the Arduino IDE from https://www.arduino.cc/en/software.
  2. Connect the Arduino Uno to your computer using the USB cable.
  3. Select Tools > Board > Arduino Uno.
  4. Select the correct port under Tools > Port.
  5. Open File > Examples > Basics > Blink to test your board.
  6. Click Upload to run the program.

📏 Project 1: Ultrasonic Sensor – Distance Measurement

Connections:

  • VCC → 5V
  • GND → GND
  • TRIG → D9
  • ECHO → D10

Code:

const int trigPin = 9; const int echoPin = 10; void setup() { Serial.begin(9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); } void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); long duration = pulseIn(echoPin, HIGH); int distance = duration * 0.034 / 2; Serial.print("Distance: "); Serial.print(distance); Serial.println(" cm"); delay(500); }

🔍 Project 2: IR Sensor – Object Detection

Connections:

  • VCC → 5V
  • GND → GND
  • OUT → D7
const int irSensor = 7; void setup() { pinMode(irSensor, INPUT); Serial.begin(9600); } void loop() { int state = digitalRead(irSensor); if (state == LOW) { Serial.println("Object Detected"); } else { Serial.println("No Object"); } delay(500); }

🎮 Project 3: Joystick Module – Read X and Y Values

Connections:

  • VRX → A0
  • VRY → A1
  • SW → D2
void setup() { Serial.begin(9600); pinMode(2, INPUT_PULLUP); } void loop() { int xValue = analogRead(A0); int yValue = analogRead(A1); int button = digitalRead(2); Serial.print("X: "); Serial.print(xValue); Serial.print(" Y: "); Serial.print(yValue); Serial.print(" Button: "); Serial.println(button); delay(200); }

🚦 Project 4: Traffic Light Simulation

Connections:

  • Red LED → D3
  • Yellow LED → D4
  • Green LED → D5
void setup() { pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); } void loop() { digitalWrite(3, HIGH); delay(5000); digitalWrite(3, LOW); digitalWrite(4, HIGH); delay(2000); digitalWrite(4, LOW); digitalWrite(5, HIGH); delay(5000); digitalWrite(5, LOW); }

⚡ Powering Your Arduino

  • Use Uno USB Cable for programming & power
  • Use 9V Battery & Clip for standalone projects

📌 Final Notes

  • Always double-check connections before powering
  • Have fun experimenting with the kit
  • Use stickers for personalization
Made by Aarksh Systems