![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
smoothie port to mbed online compiler (smoothieware.org)
For documentation, license, ..., please check http://smoothieware.org/
This version has been tested with a 3 axis machine
Diff: modules/tools/temperaturecontrol/TemperatureControlPool.h
- Revision:
- 0:31e91bb0ef3c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/tools/temperaturecontrol/TemperatureControlPool.h Tue Jul 31 21:11:18 2012 +0000 @@ -0,0 +1,30 @@ +/* + this file is part of smoothie (http://smoothieware.org/). the motion control part is heavily based on grbl (https://github.com/simen/grbl). + smoothie is free software: you can redistribute it and/or modify it under the terms of the gnu general public license as published by the free software foundation, either version 3 of the license, or (at your option) any later version. + smoothie is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. see the gnu general public license for more details. + you should have received a copy of the gnu general public license along with smoothie. if not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef TEMPERATURECONTROLPOOL_H +#define TEMPERATURECONTROLPOOL_H + +#include "TemperatureControl.h" +#include <math.h> +using namespace std; +#include <vector> + +#define temperature_control_checksum 44054 +#define enable_checksum 29545 + +class TemperatureControlPool : public Module { + public: + TemperatureControlPool(); + + virtual void on_module_loaded(); + + vector<TemperatureControl*> controllers; +}; + + + +#endif