Computer Science, asked by kick9, 1 year ago

say something about Arduino

Answers

Answered by aditya2020222003
0
Arduino is an open source computer hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices and interactive objects that can sense and control objects in the physical world. The project's products are distributed as open-source hardware and software, which are licensed under the GNU Lesser General Public License (LGPL) or the GNU General Public License (GPL), permitting the manufacture of Arduino boards and software distribution by anyone. Arduino boards are available commercially in preassembled form, or as do-it-yourself (DIY) kits.
Answered by Anshu33845
0

Answer:

Arduino is a simple and small Computers for non-engineers. It is a computer which helps us to understand and create our creativity to do innovative using Arduino. Now, we talk more about Arduino Programming, there are two parts are as follows as:

void setup(): put your setup code here, to run once.

void loop(): put your main code here, to run repeatedly.

Example:

Blinking of LEDs

void setup()

{

pinMode(8, OUTPUT);

}

void loop()

{

digitalWrite(8, HIGH);

delay(1000);

digitalWrite (8, LOW);

delay(1000);

}

Similar questions