A program to automatically tune a guitar. Written by Justin Reidhead and Steven Swenson
Dependencies: FFT FrequencyFinder Motor NewTextLCD PinDetect mbed strings
Diff: Motor/Motor.h
- Revision:
- 2:9c0a83c5ded5
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Motor/Motor.h Sun Apr 15 00:37:37 2012 +0000 @@ -0,0 +1,20 @@ +#pragma once +#include "mbed.h" +#include "string.h" + +using namespace std; + +class Motor { + +public: + + Motor(PinName enable,PinName direction,PinName step); + ~Motor(); + + void motor_turn(int, int); + +private: + DigitalOut _enable; + DigitalOut _direction; + PwmOut _step; +}; \ No newline at end of file