Posts

Robotics Class - Admission open(2025)

Image
ROBOTICS CLASSES FOR KIDS(6YESR TO 16 YEARS) Robotics classes for kids (class 2 to 10) are fun and interactive lessons that introduce them to technology, engineering, and problem-solving. In these classes, kids get to build and program their own robots using simple kits and easy software. The lessons focus on the basics of how robots work, including sensors, motors, and how to design and program robots to do specific jobs. Kids are encouraged to be creative, design their own robots, solve challenges, and try different ideas while learning important STEM (Science, Technology, Engineering, and Math) skills. WhatsApp now for more information - 9193672551   Couse name    Scratch 3.0 (block code)  Electronic basic  C language/ C++ (online)  Microcontroller Arduino (level 1) Arduino  (level 2) Arduino + Sensors  (level 3) IOT Esp(Gn. level1) IOT Esp( level 2) python(online)       

Raspberry pi

Image
 Raspberry pi  -  A Raspberry Pi is a small computer that can run a full operating system (usually Linux). It has more power and features than a microcontroller, like USB ports, HDMI output, Wi-Fi, and the ability to run complex software. There are various types of  Raspberry pi model Raspberry Pi 4 Model B Raspberry Pi 3 Model B+ Raspberry Pi 3 Model B Raspberry Pi Zero 2 W Raspberry Pi Zero W Raspberry Pi 400 Raspberry Pi Pico How to install Raspberry pi 4   Go to google and paste this link https://www.raspberrypi.com/softwar Clink on Download install this imager insert SD card in card reader and connect to computer and click on choose storage.  After process remove SD card and put in Raspberry pi And connect Raspberry pi to monitor/computer/laptop by HDMI cable and c-type cable, Now you can use Raspberry pi.

ProjectMania

Image
        PojectMania maalpani near Aashish sir classes chhatri camp road. Motor driver #define IN1 2 #define IN2 3 #define IN3 4 #define IN4 5 #define ENA 6 #define ENB 10 void setup() {   pinMode(IN1,OUTPUT);   pinMode(IN2,OUTPUT);   pinMode(IN3,OUTPUT);   pinMode(IN4,OUTPUT);   pinMode(ENA,OUTPUT);   pinMode(ENB,OUTPUT); } void loop() {   digitalWrite(ENA,100);   digitalWrite(ENB,100);   digitalWrite(IN1,HIGH);   digitalWrite(IN3,HIGH);   digitalWrite(IN2,LOW);   digitalWrite(IN4,LOW); } Robotics hand #include <Servo.h> Servo s1;   Servo s2;  Servo s3;  int pos = 0;    // variable to store the servo position void setup() { s1.attach(3); s2.attach(9);  s3.attach(6);    } void loop() {   delay(50);   for (pos = 0; pos <= 60; pos += 1)    {                            ...

IOT

Image
 INDEX What is IOT How make IOT based project What is ESP  How to connect Esp to LED How to connect Esp to Motor How to connect Esp to Servo How to connect Esp to Sensor How to make IOT by led NoteRed Image recognition  IOT  :-  The Internet of Things (IoT) is a network of connected devices that can sense and exchange data with other devices and systems. IoT devices are also known as "smart objects".  How make IOT based project :- We can create IoT projects using an ESP microcontroller and a Raspberry Pi, by connecting various sensors and devices to gather and exchange data for different applications. What is ESP :-  An ESP microcontroller is a small chip that combines a processor (CPU), Wi-Fi, and Bluetooth in one. It is used in IoT devices, wearable gadgets, and mobile devices to connect and communicate wirelessly. There are mainly 2 types ESP32 The ESP32 is an affordable microcontroller with Wi-Fi and Bluetooth, making it perfect for connecting...

Class 7

Image
 Syllables   Arduino What is Arduino Arduino Hardware Arduino Software           Light Automation by Arduino Light blinking Ambulance lights Traffic lights Chaser lights  5 by 5 lights               Servo Motor   What is servo motor How does it work. How does connection How does coding 1 servo run on 45 2 servo connection and coding           Project 1 - make a project by using 2 Leds and 1 servo.           Motor driver  What is Motor driver  How does it work. How does connection How does coding project 2 - make a project by using motor driver, 2 motors etc.   What is Arduino     Arduino - Arduino is an open-source electronics platform based on easy-to-use hardware and software. It consists of a microcontroller (a small computer on a single integrated circuit) and an integrated development environment (IDE) that allows...

Class 8

Image
What is sensor types of sensor LDR sensor IR sensor project 1 ultrasonic sensor smoke sensor Rain drop sensor MQ3 sensor project 2 Bluetooth LCD project 3 IOT esp32 esp8266 Led project by esp32 and esp8266 Sensor connect of esp32 final project #LDR  int ldr = A0; void setup() {   Serial.begin(9600);   pinMode(A0,INPUT);   pinMode(13,OUTPUT); } void loop() {   int data = analogRead(ldr);   Serial.print(" ldr ");   Serial.println(data);   delay(100);   if(data <= 500)   {     digitalWrite(13,HIGH);   }   else   {     digitalWrite(13,LOW);   } } #Ultrasonic An ultrasonic sensor is device  that measures the distance to an object using ultrasonic sound waves.                             An ultrasonic sensor works through a process that involves sending out sound waves and measuring the time it takes for them to return. Here’s ...