サーボをパルスで制御しています。バグ、質問等は中田までよろしく。
Dependencies: mbed
Fork of BusOut_HelloWorld by
main.cpp
- Committer:
- WAT34
- Date:
- 2014-12-18
- Revision:
- 2:e6fae83a99c1
- Parent:
- 0:717993c337df
File content as of revision 2:e6fae83a99c1:
#include "mbed.h" PwmOut ser(p21); int main(){ ser.period_ms(17); ser.pulsewidth_ms(2.3); wait(1); while(1){ ser.pulsewidth_ms(1.5); wait(1); ser.pulsewidth_ms(2.3); wait(1); } }