Posts

5 Tips to Improve English Knowledge Quickly!!!

  Improving one's English language skills is a multifaceted endeavor that involves various aspects of language proficiency. Here are 25 key points to consider when working on improving your English language: 1. Vocabulary: Continuously expand your vocabulary by learning new words regularly. 2. Grammar: Understand and practice proper grammar rules to enhance clarity and coherence in your writing and speech. 3. Reading: Read a variety of materials, including books, newspapers, and magazines, to expose yourself to different writing styles and vocabulary. 4. Writing: Practice writing essays, articles, and journals to improve your composition skills. 5. Listening: Pay attention to English audio materials, such as podcasts, music, and audiobooks, to enhance your listening comprehension. 6. Speaking: Engage in conversations with native speakers or fellow learners to practice pronunciation and fluency. 7. Pronunciation: Work on your pronunciation to sound more natural and easily understood...

Make a Automatic Vaccum Cleaner Robot

Image
  j YOU TUBE LINK FOR MAKING A ROBOT https://youtu.be/4FVfoHW16JA ARDUINO CODE FOR AUTOMATIC AUTOMATIC VACCUM CLEANER ROBOT #include <Servo.h> #include <NewPing.h> // L298N motor control pins const int LeftMotorForward = 7; const int LeftMotorBackward = 6; const int RightMotorForward = 5; const int RightMotorBackward = 4; // Sensor pins #define trig_pin A1 #define echo_pin A2 #define maximum_distance 200 boolean goesForward = false; int distance = 100; NewPing sonar(trig_pin, echo_pin, maximum_distance);  Servo servo_motor;  void setup() {   pinMode(RightMotorForward, OUTPUT);   pinMode(LeftMotorForward, OUTPUT);   pinMode(LeftMotorBackward, OUTPUT);   pinMode(RightMotorBackward, OUTPUT);   servo_motor.attach(10);    servo_motor.write(115);   delay(2000);   // Calibrate initial distance   for (int i = 0; i < 4; i++) {     delay(100);     distance = readPing();   } } void loop() { ...