farmbot-arduino-firmware/src/F22Handler.h

31 lines
595 B
C
Raw Normal View History

2014-08-06 16:04:40 -06:00
/*
* F22Handler.h
*
* Created on: 15 maj 2014
* Author: MattLech
*/
#ifndef F22HANDLER_H_
#define F22HANDLER_H_
#include "GCodeHandler.h"
#include "Config.h"
#include "CurrentState.h"
#include "pins.h"
#include "Config.h"
#include "StepperControl.h"
#include "ParameterList.h"
class F22Handler : public GCodeHandler {
public:
static F22Handler* getInstance();
int execute(Command*);
private:
F22Handler();
F22Handler(F22Handler const&);
void operator=(F22Handler const&);
2014-08-07 15:05:30 -06:00
//long adjustStepAmount(long);
//long getNumberOfSteps(double, double);
2014-08-06 16:04:40 -06:00
};
#endif /* F22HANDLER_H_ */