Introduction

Learn about embedded systems and their applications.

Microcontrollers

Microcontrollers are compact integrated circuits.

void setup() {
    pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
    digitalWrite(LED_BUILTIN, HIGH);
    delay(1000);
    digitalWrite(LED_BUILTIN, LOW);
    delay(1000);
}

Real-Time Systems

Real-time systems provide deterministic responses to events.

Embedded Software

Embedded software controls hardware functionalities.