Posts

Showing posts from March, 2024

Project Archives

Project Archives Hello, i am sumeet hibare, i have worked on a project archives. this project is prepared from an existing project base and over it i have preapared a new route to this project and added certain modifications and features. for more information visit :  Archives Repository If You Like the project then do follow me on github :  sumeet hibare About The Project this project is called student management system, which i have prepared in my 3rd Year, i have developed this project on certain problems then i designed with some ideas NOTE : This project is Hybrid, i.e it doesn't store any data over internet all the files are stored locally, but the scripts and css require an internet connection and its totally safe to use Technologies Used This project is highly advanced and is itself a software solution for small working institutions, if anyone wants to use this project for their use and developement is totally open for contributions.     HTML | CSS | JS | TAI...

Activate Microsoft Office

This is the Microsoft Office 2021 ISO ( Only English Supported ) Office21  - Click on the link and the Download Begins Automatically

Robo Race / Robo Soccer

 This code Below is the Perfect Code for controlling Arduino Bots. REMEMBER : if you know how to do connections then this code is an elixir for you because unlike previous posts i have provided circuit diagram for connections, but this time this code is prepared by me and i made connections through understanding of code itself.  Enjoy!! **-----new code starts here, the 4 motor code smooth working-----** int m1a = 9;  // Motor 1, Pin A int m1b = 10; // Motor 1, Pin B int m2a = 11; // Motor 2, Pin A int m2b = 12; // Motor 2, Pin B char val; void setup() {   pinMode(m1a, OUTPUT);   pinMode(m1b, OUTPUT);   pinMode(m2a, OUTPUT);   pinMode(m2b, OUTPUT);   Serial.begin(9600); } void loop() {   while (Serial.available() > 0) {     val = Serial.read();     Serial.println(val);   }   if (val == 'F') { // Forward     digitalWrite(m1a, HIGH);     digitalWrite(m1b, LOW);     digitalWrite(m2a, ...

Obstacle Avoiding Bot ( Maze Solver )

Image
 This is the Obstacle Avoiding /  Maze Solver Bot Code & Circuit Diagrams  Main Components Required  1 . Arduino UNO / UNO R3 - 01 2 .  L298 Motor Driver - 01 3 . N20 300rpm Motor - 04 4 . Caster wheel - 04 5 . Ultrasonic Senser - 03 6 . Some Jumper Wires 7 . 12V Battery **---------------code starts here---------------** // Pin definitions for motors and ultrasonic sensors const int leftMotorPin = 2; const int rightMotorPin = 4; const int frontUltrasonicTrigPin = 11; const int frontUltrasonicEchoPin = 12; const int leftUltrasonicTrigPin = 9;  const int leftUltrasonicEchoPin = 10; const int rightUltrasonicTrigPin = 7; const int rightUltrasonicEchoPin = 8; const int motorPinA = 3; const int motorPinB = 5; // Maximum distance to consider an obstacle (in centimeters) const int obstacleDistance = 15; void setup() {   // Initialize motor pins as outputs   pinMode(leftMotorPin, OUTPUT);   pinMode(rightMotorPin, OUTPUT);   pinMode(motorPinA,...