top of page
Search
Code and Diagram For Obstacle Avoiding Robot
Code// //AKSHIT INNOVATION LAB //SUBSCRIBE NOW #include <Servo.h> //Servo motor library. This is standard library #include...
AKSHIT'S INNOVATION LAB
Dec 9, 20221 min read
25 views
0 comments


Code & Circuit Diagram for Fire Alarm
CIRCUIT DIAGRAM CODE //AKSHITINNOVATION LAB #include<SoftwareSerial.h> int flameSensor = 2; int buzzer = 12; void setup() { pinMode...
AKSHIT'S INNOVATION LAB
Jun 6, 20221 min read
34 views
0 comments

Code & Circuit Diagram For Clap Control Home Automation
CODE -------------------- //AKSHIT INNOVATION LAB #include<SoftwareSerial.h> int flameSensor = 2; int buzzer = 12; void setup() { pinMode...
AKSHIT'S INNOVATION LAB
May 2, 20221 min read
31 views
0 comments

Code & Circuit Diagram For Distance Measuring Device
***PROCESSING CODE*** import processing.serial.*; Serial myPort; String data="" ; PFont myFont; void setup() { size(1366,900); // size...
AKSHIT'S INNOVATION LAB
Feb 20, 20221 min read
23 views
0 comments

CODE AND CIRCUIT DIAGRAM FOR DIGITAL DICE
//CIRCUIT //CODE //AKSHIT INNOVATION LAB int seg_a = 11; int seg_b = 10; int seg_c = 9; int seg_d = 8; int seg_e = 7; int seg_f = 6; int...
AKSHIT'S INNOVATION LAB
Dec 22, 20211 min read
14 views
0 comments


Code and Circuit Diagram for Arduino Rock Paper Scissor Game | Robot
Circuit:- Code:- //AKSHIT INNOVATION LAB https://www.youtube.com/c/AKSHITSINNOVATIONLAB //Stone Paper Scissor #include <Servo.h>...
AKSHIT'S INNOVATION LAB
Nov 21, 20211 min read
72 views
0 comments

CODE AND CIRCUIT DIAGRAM FOR SOCIAL DISTANCING BELT
//AKSHIT INNOVATION LAB // const int pingTrigPin = A4; const int pingEchoPin = A5; int led=13; //Buzzer to PIN 4 int buz1=11; void...
AKSHIT'S INNOVATION LAB
Oct 21, 20211 min read
35 views
0 comments

CODE AND CIRCUIT DIAGRAM FOR ANTI THEFT ALARAM
//AKSHIT INNOVATION LAB void setup() { pinMode(2, INPUT); Serial.begin(9600); pinMode(13, OUTPUT); } void loop() {...
AKSHIT'S INNOVATION LAB
Oct 13, 20211 min read
19 views
0 comments


CODE AND CIRCUIT DIAGRAM FOR HELMET WIPER
//AKSHIT INNOVATION LAB //wiper #include <Servo.h> Servo myservo; Servo myservo1; int pos = 0; int sensorValue = 0; void setup() {...
AKSHIT'S INNOVATION LAB
Sep 30, 20211 min read
292 views
0 comments


CODE AND CIRCUIT DIAGRAM FOR CAR PARKING ALARM
//AKSHIT INNOVATION LAB int buzPin = 7; //declare pin for Buzzer; int trigPin = 8; //declare pin for trigger pin of UltraSonic...
AKSHIT'S INNOVATION LAB
Sep 8, 20211 min read
21 views
0 comments

CODE AND CIRCUIT DIAGRAM FOR BLIND STICK
// AKSHIT INNOVATION LAB https://www.youtube.com/c/AKSHITSINNOVATIONLAB/featured const int trigPin = 9; const int echoPin = 10; const int...
AKSHIT'S INNOVATION LAB
Aug 24, 20211 min read
64 views
0 comments

Code and Circuit diagram Home automation AKSHIT INNOVATION LAB
------------------------------------------------------------------------------------------------ CODE -----------------------------------...
AKSHIT'S INNOVATION LAB
Jul 2, 20211 min read
104 views
0 comments

CODE AND DIAGRAM FOR SERVING ROBOT
--------------------------------------------------------------------------------------------------------------------- DIAGRAM...
AKSHIT'S INNOVATION LAB
May 18, 20211 min read
864 views
0 comments


How to make a RADAR
Things used in this project Hardware components Ultrasonic Sensor https://www.amazon.in/Electronicspices-HC-SR04-Ultrasonic-Distance-Devl...
AKSHIT'S INNOVATION LAB
Apr 13, 20213 min read
24 views
0 comments


Code and Circuit Diagram For RFID Door Lock / akshit innovation lab
CODE --------------------------------------------------------------------------------------------------------- //AKSHIT INNOVATION LAB...
AKSHIT'S INNOVATION LAB
Jan 31, 20211 min read
46 views
0 comments

CODE AND DIAGRAM FOR RADAR / akshit innovation lab
--------------------------------------------------------------------------------------------------------- DIAGRAM...
AKSHIT'S INNOVATION LAB
Jan 9, 20213 min read
151 views
0 comments


Code and Circuit Diagram for Password Door Lock Security System / akshit innovation lab
//AKSHITS INNOVATION LAB https://www.youtube.com/c/AKSHITSINNOVATIONLAB //Password Door Lock Security System #include <Keypad.h> char*...
AKSHIT'S INNOVATION LAB
Dec 5, 20201 min read
83 views
0 comments

Code and circuit diagram for musical keyboard / akshit innovation lab
// Musical Keypad //life time skills https://www.youtube.com/channel/UCvqrugW02HjKbGUE2bw0muw #define c3 9 #define c2 8 #define c1 7...
AKSHIT'S INNOVATION LAB
Nov 29, 20201 min read
11 views
0 comments

Code and circuit diagram for Remote finder
/************************************************************* Download latest Blynk library here: https://github.com/blynkkk/blynk-libra...
AKSHIT'S INNOVATION LAB
Nov 5, 20201 min read
5 views
0 comments

Code and circuit diagram for Automatic Plant Watering System
//life time skills //Subscribe if u feel it is helpful // code starts here int sensor_pin = A0; // Soil Sensor input at Analog PIN A0 int...
AKSHIT'S INNOVATION LAB
Sep 16, 20201 min read
1,414 views
0 comments
bottom of page