Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple Arduino program blinking the onboard LED every 500ms.
# arduino_c/blink.ino
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digitalWrite(LED_BUILTIN, LOW);
delay(500);
}Arduino C (or Arduino language) is a simplified dialect of C/C++ used to program Arduino microcontrollers. It provides a lightweight, beginner-friendly environment for embedded programming, IoT devices, robotics, and sensor-based applications.
Origin & Creator
Created by the Arduino Project (Massimo Banzi, David Cuartielles, et al.) in 2005 to simplify microcontroller programming for makers and engineers.
Industrial Note
Arduino C is heavily used in prototyping, hobbyist robotics, IoT experiments, interactive art installations, and rapid hardware development for startups and educational labs.