Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MPU9150_DMP MotorControl QuaternionMath SimpleIOMacros mbed
Fork of cool_step_new by
main.cpp
- Committer:
- heuristics
- Date:
- 2015-04-20
- Revision:
- 1:7681221d0a5c
- Parent:
- 0:94acd21860e4
- Child:
- 2:182019316acc
File content as of revision 1:7681221d0a5c:
#include "mbed.h" DigitalOut led1(P2_6); DigitalOut led2(P2_7); DigitalOut led3(P2_8); Ticker infoTicker; void infoTask(void) { led1=!led1; } int main() { infoTask.attach(infoTask,0.05f); while(1) { } }