サーボをパルスで制御しています。バグ、質問等は中田までよろしく。
Dependencies: mbed
Fork of BusOut_HelloWorld by
Diff: main.cpp
- Revision:
- 0:717993c337df
- Child:
- 2:e6fae83a99c1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Feb 11 17:29:01 2013 +0000 @@ -0,0 +1,12 @@ +#include "mbed.h" + +BusOut myleds(LED1, LED2, LED3, LED4); + +int main() { + while(1) { + for(int i=0; i<16; i++) { + myleds = i; + wait(0.25); + } + } +} \ No newline at end of file