farmbot-arduino-firmware/src/F43Handler.h

30 lines
499 B
C
Raw Permalink Normal View History

2014-09-04 15:42:34 -06:00
/*
* F43Handler.h
*
* Created on: 15 maj 2014
* Author: MattLech
*/
#ifndef F43HANDLER_H_
#define F43HANDLER_H_
#include "GCodeHandler.h"
#include "Config.h"
#include "CurrentState.h"
#include "pins.h"
#include "Config.h"
#include "PinControl.h"
2017-04-19 08:12:12 -06:00
class F43Handler : public GCodeHandler
{
2014-09-04 15:42:34 -06:00
public:
2017-04-19 08:12:12 -06:00
static F43Handler *getInstance();
int execute(Command *);
2014-09-04 15:42:34 -06:00
private:
2017-04-19 08:12:12 -06:00
F43Handler();
F43Handler(F43Handler const &);
void operator=(F43Handler const &);
2014-09-04 15:42:34 -06:00
};
#endif /* F43HANDLER_H_ */