Tree cut detection system

Witness the power of innovation in preserving our precious forests with Robotshapers' GSM Based Tree Fall Detection System. Trees, the unsung heroes of our environment, face multiple challenges, including deforestation and habitat destruction. In this compelling blog, we delve into the profound environmental impact of logging and explore how our cutting-edge solution tackles this issue head-on.

Tree cut detection system

Unveil our ingenious system designed to be mounted on trees, featuring a piezoelectric sensor that detects impacts or shear forces. Through GSM connectivity, the system sends timely alerts to designated phones, enabling swift monitoring and reporting.

Trees cause many ecological and environmental effects by affecting the environment. This content examines the environmental impact of logging.Trees are an important part of ecosystems as they provide many environmental services. They play an important role in absorbing carbon dioxide and producing oxygen during photosynthesis.

Trees help reduce climate change and reduce the greenhouse effect by removing carbon dioxide from the air.They also act as natural filters, reducing pollution and improving air quality.Some dangers arise when trees are cut down. A major consequence of this is deforestation, which leads to biodiversity loss and habitat destruction. Forests are home to countless plants and animals, many of which depend on forest ecosystems for their survival. The destruction of these habitats affects the ecological balance, threatens the life of many species and may lead to their extinction.Cutting down trees also causes soil erosion. Trees use their roots to hold soil in place and prevent erosion by wind and water.

Their removal exposes the soil to erosion, leading to loss of topsoil and depletion of nutrients. This erosion affects agricultural production and can lead to the destruction of surrounding ecosystems, including groundwater. In ourproject, we are making a system to be mounted on trees.The piezoelectric sensor associated with the controller will detect any impact or shear force on the tree and provide a signal to the controller. GSM systems are also connected to circuits that send messages to specific phones so that they can be monitored or reported.

Layout of the system:

Components Required:

  1. Arduino Uno
  2. GSM 800
  3. Piezo electric sensor module 
  4. 5V DC power supply

Circuit diagram:

Code:

#include 
#define TREE 2
SoftwareSerial mySerial(0,1);
void setup(){
  Serial.begin(9600);
  
       pinMode(TREE,INPUT);
    mySerial.begin(9600);
   mySerial.println("AT");
  updateSerial();

  mySerial.println("AT+CMGF=1"); 
  updateSerial();
  mySerial.println("AT+CMGS=\"+91XXXXXXXXXX\""); // enter your phone number here (prefix country code)
  updateSerial();
  mySerial.print("SYSTEM READY");
  
  mySerial.write(26);
  
}

void loop(){
      if (digitalRead(TREE)==LOW )
      {
       mySerial.println("AT");
 updateSerial();

  mySerial.println("AT+CMGF=1"); 
updateSerial();
  mySerial.println("AT+CMGS=\"+91XXXXXXXXXX\""); // enter your phone number here (prefix country code)
  updateSerial();
  mySerial.print("TREE CUT DETECTED");
 updateSerial();
  mySerial.write(26);
    }
}
    void updateSerial()
{
  delay(500);
  while (Serial.available()) 
  {
    mySerial.write(Serial.read());//Forward what Serial received to Software Serial Port
  }
  while(mySerial.available()) 
  {
    Serial.write(mySerial.read());//Forward what Software Serial received to Serial Port
  }
}  
  delay(500);
}

void parkCar() {
  // Move the servo to block the parking space
  digitalWrite(servoPin, HIGH);
  delayMicroseconds(1000);
  digitalWrite(servoPin, LOW);
  delay(2000);
}

void retractServo() {
  // Move the servo to retract and clear the parking space
  digitalWrite(servoPin, HIGH);
  delayMicroseconds(2000);
  digitalWrite(servoPin, LOW);
  delay(2000);
}

Advantages:

 Although it is not easy to catch a stolen or felled tree, it is easy to catch with the GSM system.
 The development of this system in the tree provides timely information so that all decisions can be made quickly.

Best projects in Bhilai, Chhattisgarh, india. Contact: 7067150002