Image not Found

ROY TECH LAB

Robotics Education for Schools

Welcome to ROY TECH LAB

Igniting Young Minds Through Robotics & Innovation

At ROY TECH LAB, we believe the future belongs to the creators, the innovators, and the problem-solvers. That’s why we bring hands-on robotics education directly to schools — making STEM learning fun, engaging, and practical for students.

🚀 Started in February 2025, our journey began with a vision to empower schoolchildren with real-world tech skills. 🏫 Our first proud collaboration was with Ramkrishna Mission Vivekananda Vidyamandir, Malda and we’re just getting started!

What We Do

Why Choose Us?

Laser Alarm Security System

        //here is the code for Laser Alarm Security System
        #define LDR_PIN 2       // Digital pin connected to LDR module OUT pin
#define BUZZER_PIN 8    // Digital pin connected to buzzer or alarm

void setup() {
  pinMode(LDR_PIN, INPUT);
  pinMode(BUZZER_PIN, OUTPUT);
  digitalWrite(BUZZER_PIN, LOW);  // Start with buzzer OFF
  Serial.begin(9600);
  Serial.println("Laser Alarm Ready...");
}

void loop() {
  int ldrValue = digitalRead(LDR_PIN);

  if (ldrValue == HIGH) {
    // Light is detected (laser on LDR) → No alarm
    digitalWrite(BUZZER_PIN, LOW);
    Serial.println("Safe: Light Detected");
  } else {
    // Light is blocked (someone interrupted the laser) → Alarm ON
    digitalWrite(BUZZER_PIN, HIGH);
    Serial.println("⚠ Intrusion Detected!");
  }

  delay(100); // short delay for stability
}
      

Join the Future of Learning

Whether you're a school leader looking to bring robotics into your classrooms, or a parent wanting your child to learn future-ready skills — ROY TECH LAB is here to help.

Contact us today to start your school’s journey into robotics!