Fires and Thermal Anomalies ( Day and Night ):
1-Using animals as Alive Forest Sensors Enables a more dynamic and wider detection as compared to fixed sensors .
2- The fewer Sensors Needed means a significant reduction in cost compared to fixed sensors.
3-Since animals can go where human can not , previously unreachable areas can now be controlled.
4-Classification of animals individual and group behavior can be used for other purposes , in particular , the system may be use to detect poaching and monitor comprehensive animal deaths .
int smokeA0 = A5; | |
// Your threshold value | |
int sensorThres = 100; | |
void setup() { | |
pinMode(smokeA0, INPUT); | |
pinMode(8, OUTPUT); | |
Serial.begin(9600); | |
} | |
void loop() { | |
Serial.print(""); | |
int analogSensor = analogRead(smokeA0); | |
// Checks if it has reached the threshold value | |
if (analogSensor > sensorThres) | |
{ | |
Serial.print(""); | |
Serial.print("there is fire"); | |
Serial.print(""); | |
delay(1000); | |
Serial.print(" "); | |
} | |
} |
SpaceApps is a NASA incubator innovation program.