Showing posts with label arduino in proteus. Show all posts
Showing posts with label arduino in proteus. Show all posts

Monday, September 21, 2015

INTERFACING LCD WITH ARDUINO IN PROTEUS SIMULATOR STEP BY STEP

Introduction 

Arduino is an open source development board which is very good research and learning platform for technical and non technical person. It is very easy and comfortable to use in most of the situation from school project to the professional job. So it gives us knowledge about electronics and help develop idea of all age students. Learning arduino is awesome with enough hardware but sometimes we can not have all the component and arduino to research and design a project due to money and many thing so there is a solution of this problem.. We can design and code and test the system even if we dont have enough hardware. Yes we can solve it with computer having arduino IDE and proteus simulator. 
WANT TO LEARN ABOUT ARDUINO AND ARDUINO BASED PROJECT,CLICK HERE..
So i tried here to present an idea about the same thing that how can we use arduino in proteus to design and code system. Here is a project LCD interfacing with arduino in proteus . Try it at once and it will help you in big practical projects cause basic is fundamental.


Sunday, September 20, 2015

USING ARDUINO IN PROTEUS WITH TRAFFIC LIGHT PROJECT

Installing library file of arduino in proteus

Proteus is a popular circuit simulator which is used to design circuit in computer.
Arduino is an open source development board which is very good research and learning platform for technical and non technical person. It is very easy and comfortable to use in most of the situation from school project to the professional job. So it gives us knowledge about electronics and help develop idea of all age students. Learning arduino is awesome with enough hardware but sometimes we can not have all the component and arduino to research and design a project due to money and many thing so there is a solution of this problem.. We can design and code and test the system even if we dont have enough hardware. Yes we can solve it with computer having arduino IDE and proteus simulator. 
So i tried here to present an idea about the same thing that how can we use arduino in proteus to design and code system. Here is a project LCD interfacing with arduino in proteus . Try it at once and it will help you in big practical projects cause basic is fundamental. 
WANT TO LEARN ABOUT ARDUINO AND ARDUINO BASED PROJECT,CLICK HERE..

you should have proteus simulator and arduino ide installed in your computer.

  step one
 download proteus arduino library from the link given below.
https://drive.google.com/file/d/0B_kupfDZJEoObzA4Y1VvTjJ2cTg/view?usp=sharing

Monday, July 6, 2015

Clap sensitive switch using Arduino((basic version)

The circuit diagram of the circuit is shown in the diagram below.


The code of clap sensitive circuit is shown below. the mic and a 47 k resistor are connected in series making voltage divider and the divided voltage is sent to the analog input pin A0 of the arduino. the led is joined in pin 12 of digital i/o line of arduino. to make it work open the serial monitor and check the value without clapping and with clapping and eg if the value show is 30 without clapping and 500 with clapping then write val > 50 in if else statement. the working video of the circuit is at youtube . click the following link https://www.youtube.com/watch?v=oi7IaTbd9Gs

int clapsense=A0;
int led=12;
int state=LOW;