You are viewing an older revision! See the latest version

Homepage

Introduction

mbed is the fastest way to prototype with ARM microcontrollers. To find out how it works, take the Tour.

About mbed

  • Tour - New to mbed? Take the tour and find out more
  • mbed Microcontrollers - The mbed Microcontroller hardware lineup, comparison and details on how they work
    • mbed NXP LPC11U24 - The mbed Microcontroller for prototyping USB Devices, Battery Powered applications and Cortex-M0 designs
    • mbed NXP LPC1768 - The mbed Microcontroller for prototyping Ethernet and USB Host Devices, Powerful applications and Cortex-M3 designs

Getting started with mbed

mbed C/C++ SDK Reference

The mbed SDK provides the C/C++ software platform and libraries to build your applications

Digital I/O

  • DigitalOut - Configure and control a digital output pin.
  • DigitalIn - Configure and control a digital input pin.
  • DigitalInOut - Bi-directional digital pins
  • BusIn - Flexible way to read multiple DigitalIn pins as one value
  • BusOut - Flexible way to write multiple DigitalIn pins as one value
  • BusInOut - Flexible way to read/write multiple DigitalIn pins as one value
  • PortIn - Fast way to read multiple DigitalIn pins as one value
  • PortOut - Fast way to write multiple DigitalIn pins as one value
  • PortInOut - Fast way to read/write multiple DigitalIn pins as one value
  • PwmOut - Pulse-width modulated output

Analog I/O

  • AnalogIn - Read the voltage applied to an analog input pin
  • AnalogOut - Set the voltage of an analog output pin

Networking & Comms

  • CAN - Controller-area network bus
  • USBDevice - Using mbed as a USB Device
    • USBMouse - Emulate a USB Mouse with absolute or relative positioning
    • USBKeyboard - Emulate a USB Keyboard, sending normal and media control keys
    • USBMouseKeyboard - Emulate a USB Keyboard and a USB mouse with absolute or relative positionning
    • USBHID - Communicate over a raw USBHID interface, great for driverless communication with a custom PC program
    • USBMIDI - Send and recieve MIDI messages to control and be controlled by PC music sequencers etc
    • USBSerial - Create a virtual serial port over the USB port. Great to easily communicate with a computer.
    • USBAudio - Create a USBAudio device able to receive audio stream from a computer over USB.
    • USBMSD - Generic class which implements the Mass Storage Device protocol in order to access all kinds of block storage chips

Time & Interrupts

  • Timer - Create, start, stop and read a timer
  • Timeout - Call a function after a specified delay
  • Ticker - Repeatedly call a function
  • InterruptIn - Trigger an event when a digital input pin changes.
  • wait - Wait for a specified time
  • time - Get and set the realtime clock

Other

Working with mbed

  • Help - The best way to get help, and how to help others
  • FAQs - Frequently asked technical questions about working with mbed
  • Nontechnical FAQs - Frequently asked questions about accounts, university/college use, etc. See also Technical FAQ.
  • deadmbed - Is your mbed dead? Here are some things you can try!

All wikipages