Werkend motorscript met led feedback

Dependencies:   Encoder MODSERIAL mbed HIDScope

Fork of frdm_Motortryout2 by Robert Schulte

main.cpp

Committer:
Margreeth95
Date:
2015-09-21
Revision:
4:69c6cc1247c1
Parent:
3:051c91b04acd
Child:
5:672798238952

File content as of revision 4:69c6cc1247c1:

#include "mbed.h"
#include "encoder.h"
#include "MODSERIAL.h"
 
Serial pc(USBTX, USBRX); // tx, rx
DigitalOut led(LED_RED);
DigitalOut motor2direction(D4); //D4 en D5 zijn motor 2 (op het motorshield)
PwmOut motor2speed(D5);
DigitalIn button1(SW3);

int main()
{
    motor2direction = 0;
    motor2speed = 0;
    led = 1;
    pc.baud(9600);
    while(true)
    {
           char c = pc.getc();
           switch(c)
           {
                case 'f':
                {
                    motor2direction = 1;
                    motor2speed = 0.5f;
                    pc.printf("het werkt\n");
                    wait(1);
                    led = 0;
                    wait(0.2f);
                    motor2speed = 0;
                    led = 1;
                    break;
                }
                
                case 'r':
                 {
                    motor2direction = -1;
                    motor2speed = 0.5f;
                    pc.printf("dit werkt ook\n");
                    wait(1);
                    led = 0;
                    wait(0.2f);
                    motor2speed = 0;
                    led = 1;
                    break;
                }
            }
    }   
}