farmbot-arduino-firmware/src/F81Handler.h

33 lines
592 B
C
Raw Normal View History

2014-07-23 01:46:21 -06:00
/*
* 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"
2019-12-02 14:07:28 -07:00
#include "Movement.h"
#include "PinControl.h"
2014-07-23 01:46:21 -06:00
2017-04-19 08:12:12 -06:00
class F81Handler : public GCodeHandler
{
2014-07-23 01:46:21 -06:00
public:
2017-04-19 08:12:12 -06:00
static F81Handler *getInstance();
int execute(Command *);
2014-07-23 01:46:21 -06:00
private:
2017-04-19 08:12:12 -06:00
F81Handler();
F81Handler(F81Handler const &);
void operator=(F81Handler const &);
long adjustStepAmount(long);
long getNumberOfSteps(double, double);
2014-07-23 01:46:21 -06:00
};
#endif /* F81HANDLER_H_ */