Posts

Arduino IDE Dark Theme | Change Arduino IDE theme to dark

Image
  Arduino IDE dark theme Are you tired of bright light of Arduino IDE and want to change the theme to dark. Then you are at the right place. In these blog we are going to learn how to change Arduino IDE theme to dark mode. I recommend to watch these youtube video given below.  Steps to do: STEP 1: Download zip file from this link STEP 2: Now click the download button on the top left corner of the screen. A zip folder will be downloaded. STEP 3: Now extract the zipped folder. STEP 4: Now navigate to arduino IDE installation location. In windows it is  C:\Program Files (x86)\Arduino NOTE- You will find this location only if you have done manual installation of arduino ide . You will not find this folder if you have installed it from Microsoft Store. To install it manually. See this video. STEP 5: Now go inside this arduino folder. And open lib folder in it. You will find a theme folder inside lib delete this folder. STEP 6: Now copy paste the extracted theme folder we dow...

Make Windows Taskbar look Like Mac OS

Image
                  Make Windows taskbar look like mac         Do you want to have experience of macOS in your windows PC / Laptop? Than this is the right place for you. For further instructions please watch this youtube video given below. For downloading files the link CLICK HERE      Download Folder Here Download here

Coding course part-3

Image
  PART-3 View PDF Subscribe my Channel PDF-

Coding course part 2

Image
Part-2 View PDF     ARDUINO IDE DOWNLOAD click here to download Subscribe my Channel PDF-

Coding course part-4

Image
  Part 4 View PDF View CODE Code - CODE OUTPUT Copy code void setup ( ) {   pinMode ( 13 , OUTPUT ) ; //we have connected vcc to pin 13 and it is used as output                       //we dont define negative terminal we define positive terminal only } void loop ( ) {   digitalWrite ( 13 , HIGH ) ; //give electricity to 13   delay ( 1000 ) ;            //delay takes time in microseconds 1000ms=1s   digitalWrite ( 13 , LOW ) ; //dont give electricity to 13   delay ( 1000 ) ; } PDF-

Automatic Barrier Opening System using arduino

Image
Automatic Barrier Opening system Hello! I am Shlok Jain. I have made Automatic Barrier Opening System. It's a very easy task to make this. If you hane not viewed my youtube video then go and view it. Here it is. Also don't forget to like, share, and subscribe my channel.   Materials Required Arduino UNO Ultrasonic sensor Servo motor some jumper wires breadboard Steps to make it Step 1: Make connections according to given circuit diagram. Step 2: Now download arduino IDE. Now open application. Clear everything written on it. And paste following code there. CODE OUTPUT Copy code #include < Servo . h > int trig = 2 , echo = 3 ; Servo servo ; void setup ( ) {   servo . attach ( 5 ) ;   pinMode ( trig , OUTPUT ) ;   pinMode ( echo , INPUT ) ; } void loop ( ) {   long samay , dist ;   digitalWrite ( trig , LOW ) ;   d...
Image
Thief Detecting device (Arduino ) Hello! I am Shlok Jain. I have made here a thief detecting robot. It's a very easy task to make this If you hane not viewed my youtube video then go and view it. Here it is. Also don't forget to like, share, and subscribe my channel. MATERIALS   REQUIRED  1:      Arduino UNO board 2:      Ultrasonic sensor 3:      Buzzer (optional) STEPS    TO    MAKE   IT. STEP 1 : Connect the ultrasonic sensor with the arduino uno board with ultrasonic sensor like this: If you are using buzzer then connect negative terminal to GND and positive terminal to pin 13. STEP 2: Connect the arduino board with computer by cable that comes with it. STEP 3: Download Arduino IDE from https://www.arduino.cc/en/software   . Now paste the given code in that application and click that arrow symbol on upper left corner to upload the code. CODE OUTPUT ...

Distance Measuring Device without LCD screen, jumper wire, breadBoard

Image
DISTANCE MEASURING DEVICE (Arduino based) Hello! I am Shlok Jain. I have made here a distance measuring device with only ultrasonic sensor and arduino uno board. It's a very easy task to make this. I have not used jumper wire or breadboard or LCD screen here. If you have not viewed my youtube video then go and view it. Here it is. Also don't forget to like, share, and subscribe my channel. MATERIALS REQUIRED Arduino UNO board       2. Ultrasonic sensor STEPS TO MAKE IT STEP 1: Connect ultrasonic sensor with arduino uno board. as shown in figure. Leave first three pins and apply sensor directly to board. STEP 2:  Connect arduino board with computer with cable that comes with arduino uno Download Arduino IDE and paste given code in that application. Now upload the given code by clicking the arrow symbol at upper left of computer screen. int trig=12; int echo=13; void setup() { pinMode(trig,OUTPUT); pinMode(echo,INPUT); pinMode(11,OUTPUT); digitalWrite(11,HIGH)...