To install Arduino, first of all, let's choose the windows data line that is suitable for our operating system from the https://www.arduino.cc/en/software page.
We chose "Win 7 and never" because we have Windows 10 on our own operating system.
After the program is downloaded, let's install the installation simply by clicking the next button. In general, it will ask for confirmation about driver installation 3 times. Let's confirm these.
Before running the program, let's connect our UNO card to our computer via USB. Let's wait for the drivers to install and recognize. (It usually takes less than 30 seconds.)
Let's type Device Manager in the Windows search line and open it.
Here we will look at which port our device has worked on. If our driver is installed without any problems and everything is fine, our Arduino board will look like the one below.
Since these problems are generally experienced in clone arduinos, we perform analysis over clone arduino. It works on the COM5 port as it appears in the device manager.
We open our arduino program that we installed.
We have one last test left. On the program;
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
A block of code should appear. Here we will test the delay 1000 as 100 and 1000 in both parts so that we can see if our UNO board responds. After clicking the install icon, it will say installation completed at the bottom. If the flashing time of the light on our card changes, it means that we have performed a successful installation.