Embedded systems basics: How to simulate flame sensor using arduino uno in proteus ISIS professional -using PROTEUS ISIS professional and Arduino IDE software here i am going to show you how to simulate flame sensor using arduino uno in proteus ISIS professional Embedded systems step by step video guide COMPONENTS:
- Arduino uno
- LED light
- vibration sensor
- Resistor
- Virtual terminal
We use two conditions for flame sensor using arduino uno in proteus ISIS
CONDITIONS:
- flame sensor value HIGH - Blinking LED light
- flame sensor value LOW - Not Blinking
Coding for flame sensor:
#define Flame_pin 13 int flame_value; void setup() { Serial.begin(9600); // Initializing Serial Port pinMode(2,OUTPUT); } void loop() { // put your main code here, to run repeatedly: flame_value = digitalRead(Flame_pin); Serial.print(flame_value); if(flame_value==HIGH){ digitalWrite(2,HIGH); Serial.print(" HIGH VALUE "); } else{ digitalWrite(2,LOW); Serial.print(" LOW VALUE "); } delay(1000); } ___________________________________________________________________________________ Embedded systems basics -Digital Universe Click below link for gas sensor https://youtu.be/ALm-okkKRPY Click below link for PIR sensor https://youtu.be/4gRo1ijpMmQ Click below link for temperature sensor https://youtu.be/1GJC_6eF7Xg Click below link for vibration sensor https://youtu.be/jiJAhxa687s Subscribe To My Channel and Get More Great Ideas https://bit.ly/2UlZJcb If you like this Video Please like and Share to your friends... Basics of embedded systems -Digital Universe Thanking you..
No comments:
Post a Comment