Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Toggle an LED on pin 13 every 500 ms.
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(500);
digitalWrite(13, LOW);
delay(500);
}Arduino C/C++ refers to programming Arduino microcontrollers using the C and C++ languages, enabling control of sensors, actuators, and electronics for embedded and DIY projects.
Origin & Creator
Arduino was created by Massimo Banzi, David Cuartielles, Tom Igoe, Gianluca Martino, and Nicholas Zambetti in 2005, aiming to make microcontroller programming accessible to designers, artists, and hobbyists.
Industrial Note
While primarily hobbyist-focused, Arduino C/C++ is also used in prototyping, educational electronics, small-scale industrial automation, and rapid hardware development.