Posts

Showing posts from April, 2021

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-