Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please insert a code into this code this instruction: 0 ppm-49ppm --> ventilation will OFF ppm > 50ppm --> ventilation will ON Ventilation system is

please insert a code into this code this instruction:
0 ppm-49ppm --> ventilation will OFF
ppm > 50ppm --> ventilation will ON
Ventilation system is PLC image text in transcribed
/* MQ-7 Carbon Monoxide Sensor Circuit with Arduino const int AOUTpin=0;//the AOUT pin of the CO sensor goes into analog pin AO of the arduino const int DOUTpin=8://the DOUT pin of the CO sensor goes into digital pin D8 of the arduino const int ledPin=13://the anode of the LED connects to digital pin D13 of the arduino int limit; int value; void setup() { Serial.begin(115200)://sets the baud rate pinMode(DOUTpin, INPUT);//sets the pin as an input to the arduino pinMode(ledPin, OUTPUT);//sets the pin as an output of the arduino void loop value= analogRead(AOUTpin);//reads the analaog value from the CO sensor's AOUT pin limit= digitalRead(DOUTpin);//reads the digital value from the CO sensor's DOUT pin Serial.print("CO value: "); Serial.println(value)://prints the CO value Serial.print("Limit: "); Serial.print(limit);//prints the limit reached as either LOW or HIGH (above or underneath) delay(100); if (limit == HIGH){ digitalWrite(ledPin, HIGH)://if limit has been reached, LED turns on as status indicator else{ digitalWrite(ledPin, LOW);//if threshold not reached, LED remains off

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Successful Keyword Searching Initiating Research On Popular Topics Using Electronic Databases

Authors: Randall MacDonald, Susan MacDonald

1st Edition

0313306761, 978-0313306761

More Books

Students also viewed these Databases questions

Question

Project management skills and/or experience desirable

Answered: 1 week ago