yarf 0.1
Yet Another RepRap Firmware
src/temperature/temperature.h
Go to the documentation of this file.
00001 /*
00002  * temperature.h
00003  *
00004  * Copyright 2011 Pieter Agten
00005  *
00006  * This file is part of Yarf.
00007  *
00008  * Yarf is free software: you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation, either version 3 of the License, or
00011  * (at your option) any later version.
00012  *
00013  * Yarf is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with Yarf.  If not, see <http://www.gnu.org/licenses/>.
00020  */
00021 
00030 #ifndef TEMPERATURE_H_
00031 #define TEMPERATURE_H_
00032 
00033 #include <stdint.h>
00034 #include <stdbool.h>
00035 
00040 void temp_init(void);
00041 
00047 void temp_set_nozzle_target(float c);
00048 
00054 float temp_get_nozzle_temp(void);
00055 
00062 uint8_t temp_get_nozzle_power(void);
00063 
00070 bool temp_nozzle_temperature_reached(void);
00071 
00075 void temp_nozzle_temperature_wait(void);
00076 
00077 
00078 
00084 void temp_set_printbed_target(float c);
00085 
00091 float temp_get_printbed_temp(void);
00092 
00099 uint8_t temp_get_printbed_power(void);
00100 
00107 bool temp_printbed_temperature_reached(void);
00108 
00112 void temp_printbed_temperature_wait(void);
00113 
00114 
00115 #endif //TEMPERATURE_H_
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines