code

Dependencies:   FastPWM HIDScope mbed

Fork of Motor_Rotator by Eki Liptiay

main.cpp

Committer:
Iriskolenbrander9
Date:
2018-09-27
Revision:
1:aab087815027
Parent:
0:5746f50d8ee4
Child:
2:328fa2eb6437

File content as of revision 1:aab087815027:

#include "mbed.h"
#include "HIDScope.h"

// Motor 1 has PWM-pin D5 and direction-pin D4

AnalogIn pot1(A0);
DigitalOut directionpin(D7);
PwmOut pwmpin(D6);
HIDScope scope(1); // We’re going to send 1 channel of data
Ticker AInTicker;

void ReadAnalogInAndFilter()
{
        float a = 2.0f*pot1-1.0f;
        scope.set(0, a);  // Brightness is saved in the first scope.
        scope.send(); // send what's in scope memory to PC
}

int main(){
    pwmpin.period_us(60);
    AInTicker.attach(&ReadAnalogInAndFilter, 0.01f);
    while (true) {
        float u = 2.0f*pot1-1.0f; //determine useful value, -0.3f is just an example
        directionpin = u > 0.0f; //either true or false
        pwmpin = fabs(u); //pwm duty cycle can only be positive, floating point absolute value
        wait(0.001f);
    }
}