Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Counts button presses and toggles an LED on each press.
#include "mbed.h"
DigitalOut led(LED1);
InterruptIn button(USER_BUTTON);
int buttonCount = 0;
void updateUI() {
printf("Button Count: %d\n", buttonCount);
led = buttonCount % 2;
}
void buttonPressed() {
buttonCount++;
updateUI();
}
int main() {
button.rise(&buttonPressed);
updateUI();
while(1) {}
}Mbed OS (mbed-cpp) is an open-source embedded operating system and C++ framework designed for ARM Cortex-M microcontrollers. It provides a full-featured platform for building IoT devices, supporting real-time operating system capabilities, peripheral access, and connectivity.
Origin & Creator
Developed by ARM Ltd. in 2009 to create a unified C++ platform for ARM Cortex-M microcontrollers and IoT devices.
Industrial Note
Mbed OS is widely used in industrial IoT, connected devices, wearable electronics, and embedded prototyping where professional-grade C++ performance and RTOS features are required.