Blame | Last modification | View Log | RSS feed
#include "RotationStage.h"
#include <iostream>
int main(int argc, char *argv[]){
RotationStage rotationStage;
// try {
// } catch (char* e) {
// std::cerr << "Could not create rotation stage object. " << e << std::endl;
// }
for(int i=0; i<180; i+=10)
rotationStage.moveToAngle(i);
rotationStage.moveToAngle(0);
return 0;
}