Hi !
This is my first pos
If you want to learn arduino or just want to have some exciting hobby, I recommend you read the article about the first steps in programming with arduino.
In order to start programming on the Arduino you will definitely need to get one. You can buy it from any website or go to a shop.
start by writing a simple program for Arduino. So take the Uno Arduino and one LED lamp.
connect one of the legs of the lamp to the side of the wheel, ie the shorter foot-GND and the other with the output of the Arduino 13, and then you need to download a diagram of the Arduino search for it in Google. The program is very simple
We will light up and turn off the diode
The idea is as follows
The diode shines for 1 second, then does not light for 1 second.
This example is very clear and gives an idea of how to get to the exit you need
int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay(1000);
digitalWrite(ledPin, LOW);
delay(1000);
}
After programming the Arduino, you will notice that the lamp is working for a certain period and then turns off
Whatch out..
During the programming process it is advisable not to pull it from the computer a move it because it may be damaged.

لا يوجد تعليقات
أضف تعليق