Instructions
IDUINO for maker’s life
26 www.openplatform.cc
******Code begin******
int count;
void setup() {
Serial.begin (9600);
pinMode (9, INPUT); //Sensor output
}
void loop() {
Serial.print ("Sensor: ");
Serial.println (digitalRead(9)); //print the sensor output
delay (500); //wait half a second
}
******Code End******
Module 7: Flame Sensor Module
1.Introduction