farmbot-arduino-firmware/src/F31Handler.h

34 lines
598 B
C
Raw Normal View History

2014-09-04 15:10:47 -06:00
/*
* F31Handler.h
*
* Created on: 15 maj 2014
* Author: MattLech
*/
#ifndef F31HANDLER_H_
#define F31HANDLER_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-09-04 15:10:47 -06:00
#include "StatusList.h"
2017-04-19 08:12:12 -06:00
class F31Handler : public GCodeHandler
{
2014-09-04 15:10:47 -06:00
public:
2017-04-19 08:12:12 -06:00
static F31Handler *getInstance();
int execute(Command *);
2014-09-04 15:10:47 -06:00
private:
2017-04-19 08:12:12 -06:00
F31Handler();
F31Handler(F31Handler const &);
void operator=(F31Handler const &);
//long adjustStepAmount(long);
//long getNumberOfSteps(double, double);
2014-09-04 15:10:47 -06:00
};
#endif /* F31HANDLER_H_ */