farmbot-arduino-firmware/src/F20Handler.h

32 lines
569 B
C
Raw Normal View History

2014-08-06 16:04:40 -06:00
/*
* F20Handler.h
*
* Created on: 15 maj 2014
* Author: MattLech
*/
#ifndef F20HANDLER_H_
#define F20HANDLER_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
2017-04-19 08:12:12 -06:00
class F20Handler : public GCodeHandler
{
2014-08-06 16:04:40 -06:00
public:
2017-04-19 08:12:12 -06:00
static F20Handler *getInstance();
int execute(Command *);
2014-08-06 16:04:40 -06:00
private:
2017-04-19 08:12:12 -06:00
F20Handler();
F20Handler(F20Handler const &);
void operator=(F20Handler const &);
long adjustStepAmount(long);
long getNumberOfSteps(double, double);
2014-08-06 16:04:40 -06:00
};
#endif /* F20HANDLER_H_ */