Samenwerking Groep 12
Dependencies: Encoder MODSERIAL HIDScope mbed
Foo
main.cpp
- Committer:
- ThomasBNL
- Date:
- 2015-09-21
- Revision:
- 1:73c4c9192d80
- Parent:
- 0:86df750eeab8
- Child:
- 2:3de3c5eb400f
File content as of revision 1:73c4c9192d80:
#include "mbed.h" #include "HIDScope.h" #include "encoder.h" #include "MODSERIAL.h" //Motor 2 DigitalOut motor2direction(D4); //D4 en D5 zijn motor 2 (op het motorshield) PwmOut motor2speed(D5); DigitalIn button(PTA4); int main() { while(true) { if (button.read() == 0) { motor2direction = 1; motor2speed = 0.55f; } else { motor2direction = 0; motor2speed = 0.3f; } } } // Geen functie hieronder nog Encoder encoder1(D13,D12);