farmbot-arduino-firmware/src/F61Handler.h

30 lines
498 B
C
Raw Normal View History

2014-11-04 15:14:35 -07:00
/*
* F61Handler.h
*
* Created on: 2014-11-04
* Author: TimEvers
*/
#ifndef F4HANDLER_H_
#define F4HANDLER_H_
#include "GCodeHandler.h"
#include "Config.h"
#include "CurrentState.h"
#include "pins.h"
#include "Config.h"
#include "ServoControl.h"
2017-04-19 08:12:12 -06:00
class F61Handler : public GCodeHandler
{
2014-11-04 15:14:35 -07:00
public:
2017-04-19 08:12:12 -06:00
static F61Handler *getInstance();
int execute(Command *);
2014-11-04 15:14:35 -07:00
private:
2017-04-19 08:12:12 -06:00
F61Handler();
F61Handler(F61Handler const &);
void operator=(F61Handler const &);
2014-11-04 15:14:35 -07:00
};
#endif /* F61HANDLER_H_ */