farmbot-arduino-firmware/src/F14Handler.h

33 lines
615 B
C
Raw Normal View History

2014-10-09 15:35:26 -06:00
/*
* F14Handler.h
*
* Created on: 2014/07/21
* Author: MattLech
*/
#ifndef F14HANDLER_H_
#define F14HANDLER_H_
#include "GCodeHandler.h"
#include "Config.h"
#include "CurrentState.h"
#include "pins.h"
#include "Config.h"
#include "StepperControl.h"
class F14Handler : public GCodeHandler {
public:
static F14Handler* getInstance();
int execute(Command*);
private:
F14Handler();
F14Handler(F14Handler const&);
void operator=(F14Handler const&);
long adjustStepAmount(long);
long getNumberOfSteps(double, double);
};
#endif /* F14HANDLER_H_ */