0% found this document useful (0 votes)
6 views7 pages

Lab1 in Proteus

The document provides a guide on simulating Arduino using Proteus, including a password-based door lock system and a PID controller. It outlines necessary downloads, tutorial steps, and important links for further assistance. Additionally, it assigns tasks involving interfacing a DC motor and reading an IR sensor with Arduino.

Uploaded by

Iftikhar Tumrani
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views7 pages

Lab1 in Proteus

The document provides a guide on simulating Arduino using Proteus, including a password-based door lock system and a PID controller. It outlines necessary downloads, tutorial steps, and important links for further assistance. Additionally, it assigns tasks involving interfacing a DC motor and reading an IR sensor with Arduino.

Uploaded by

Iftikhar Tumrani
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Embedded Lab

Arduino Simulated on Proteus


• 1- How to simulate Arduino with proteus.
• 2- Password based door lock system using
Arduino uno.
• 3- PID controller on Arduino simulated on
Proteus.
What you need to do now!
• Download Arduino.
• Download Proteus8.
• Download Arduino library.
• Follow the tutorials steps.
• Deliver your homework on E-learning.
Important Links

• https://www.youtube.com/watch?v=5IQXegAfNJE
• Download the arduino library:
• https://www.youtube.com/watch?v=euNNKJnfjuo
• Simple project:
• https://www.youtube.com/watch?v=4421WKxxhGk
• An “unfound library error” might occur:
• https://www.youtube.com/watch?v=07KNv8Zn6x0
• The arduino-proteus tutorial:
• https://www.youtube.com/watch?v=-8bJT973yv0
void setup() {
pinMode (4,INPUT_PULLUP);
pinMode (7, OUTPUT);

void loop() {
// put your main code here, to run repeatedly:
if (digitalRead(4) == LOW)
{
digitalWrite (7, HIGH);
}
else{
digitalWrite(7,LOW);
}
}
Your Task for this week
• Interface a DC motor with arduino, turn it on
and off and control its speed.
• Read an IR sensor and react.

You might also like