使い方を追加
This commit is contained in:
parent
d758cb406d
commit
2a11d55613
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,20 @@
|
|||
/*
|
||||
Motor.h
|
||||
モータードライバIC(TA7291Pなど)のためのシンプルなライブラリ
|
||||
### 使い方 ###
|
||||
#include "Motor.h"
|
||||
Motor motor;
|
||||
void setup(){
|
||||
motor.attach(5, 6); // pin1は、PWM対応であることが望ましい(5はPWM対応pin)
|
||||
}
|
||||
void loop(){
|
||||
// motor.mode(GO); //前進
|
||||
motor.mode(GO, 100); //0-255(ここでは、100)のスピードで前進
|
||||
delay(1000);
|
||||
motor.mode(STOP); //停止
|
||||
delay(1000);
|
||||
}
|
||||
### ライセンス ###
|
||||
(c)2012 kou029w - MIT License [http://kou029w.appspot.com/mit-license.txt]
|
||||
*/
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue