farmbot-arduino-firmware/src/F81Handler.h

33 lines
598 B
C++

/*
* F81Handler.h
*
* Created on: 2014/07/21
* Author: MattLech
*/
#ifndef F81HANDLER_H_
#define F81HANDLER_H_
#include "GCodeHandler.h"
#include "Config.h"
#include "CurrentState.h"
#include "pins.h"
#include "Config.h"
#include "StepperControl.h"
#include "PinControl.h"
class F81Handler : public GCodeHandler
{
public:
static F81Handler *getInstance();
int execute(Command *);
private:
F81Handler();
F81Handler(F81Handler const &);
void operator=(F81Handler const &);
long adjustStepAmount(long);
long getNumberOfSteps(double, double);
};
#endif /* F81HANDLER_H_ */