farmbot-arduino-firmware/src/F22Handler.h

33 lines
600 B
C
Raw Permalink 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"
2019-12-02 14:07:28 -07:00
#include "Movement.h"
2014-08-06 16:04:40 -06:00
#include "ParameterList.h"
2017-04-19 08:12:12 -06:00
class F22Handler : public GCodeHandler
{
2014-08-06 16:04:40 -06:00
public:
2017-04-19 08:12:12 -06:00
static F22Handler *getInstance();
int execute(Command *);
2014-08-06 16:04:40 -06:00
private:
2017-04-19 08:12:12 -06:00
F22Handler();
F22Handler(F22Handler const &);
void operator=(F22Handler const &);
//long adjustStepAmount(long);
//long getNumberOfSteps(double, double);
2014-08-06 16:04:40 -06:00
};
#endif /* F22HANDLER_H_ */