smoothie port to mbed online compiler (smoothieware.org)

Dependencies:   mbed

For documentation, license, ..., please check http://smoothieware.org/

This version has been tested with a 3 axis machine

modules/tools/temperaturecontrol/TemperatureControlPool.h

Committer:
scachat
Date:
2012-07-31
Revision:
0:31e91bb0ef3c

File content as of revision 0:31e91bb0ef3c:

/*  
      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