Posts

Showing posts with the label Project 1

Create your first project!

Image
Welcome to this post! In this post I will show to make a simple project using Arduino Before you start please download Arduino IDE app- Windows -  https://www.microsoft.com/en-in/p/arduino-ide/9nblggh4rsd8 Picture from Microsoft store Apple and Linux-  Software | Arduino Scroll down to see this -  Click on the Mac OS X option. For Linux computer click on the Linux option  After installing the app, open it and you will see a screen like this- How Arduino IDE will look like after opening  The project we are going to make is LED on off project. Here are the terms we are going to use in the programming - void setup() void loop() delay(number) digitalWrite(variable, text) int led = number pinMode (variable, text) Now, before we begin I will tell you the use of these terms: 'void setup()' is used when you want to run a set of commands only once. It also is used for preparing your program, like if you want your LED to be as a output or input you can use 'pinMode( varia...