Posts

Showing posts from February, 2026

Project Work

Image
 Project Work char data; int led = 8; void setup() {   pinMode(led, OUTPUT);   Serial.begin(9600); } void loop() {   if (Serial.available()) {     data = Serial.read();     if (data == '1') {        // Voice app se ON ke liye 1 bheje       digitalWrite(led, HIGH);     }     else if (data == '0') {   // OFF ke liye 0 bheje       digitalWrite(led, LOW);     }   } } Hi and Bye code String data = ""; int led = 8; void setup() {   pinMode(led, OUTPUT);   Serial.begin(9600); } void loop() {   while (Serial.available()) {     char c = Serial.read();     data += c;     delay(5);   }   if (data.length() > 0) {     data.trim();   // extra space remove     if (data == "hi") {       digitalWrite(led, HIGH);     }     else if (data == "bye") { ...

Importance and History of Robotics

Image
 History of Robotics  A Brief History of Robotics (in Simple Words) Robotics has a long history that goes back thousands of years, starting with simple machines and leading to today’s intelligent robots. Early Ideas and Machines Ancient times (around 350 BCE – 1200 CE): People built early mechanical devices called automata. For example, Archytas made a steam-powered wooden bird, and Al-Jazari created machines that could play music and help people wash their hands.            Renaissance (1495): Leonardo da Vinci designed a “mechanical knight” that could move its arms, sit down, and open its mouth.                                  Industrial Revolution (1804): Joseph-Marie Jacquard invented the Jacquard Loom. It used punch cards to control patterns, which was an early form of programming.                  ...