使い方を追加

This commit is contained in:
Nebel 2012-09-14 13:51:57 +09:00
parent d758cb406d
commit 2a11d55613

View file

@ -1,5 +1,20 @@
/* /*
Motor.h 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] (c)2012 kou029w - MIT License [http://kou029w.appspot.com/mit-license.txt]
*/ */