KLUDGE: StepperMotor: enforce minimum step time of 1s. TODO: find out why super slow...
[clinton/Smoothieware.git] / src / modules / tools / temperaturecontrol / TemperatureControl.cpp
CommitLineData
df27a6a3 1/*
cd011f58
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 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.
4 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.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
cd011f58
AW
6*/
7
7b49793d 8// TODO : THIS FILE IS LAME, MUST BE MADE MUCH BETTER
cd011f58 9
ded56b35
AW
10#include "libs/Module.h"
11#include "libs/Kernel.h"
12#include <math.h>
13#include "TemperatureControl.h"
3c132bd0 14#include "libs/Pin.h"
ded56b35 15
3c132bd0
AW
16TemperatureControl::TemperatureControl(){}
17
18TemperatureControl::TemperatureControl(uint16_t name){
19 this->name_checksum = name;
df27a6a3 20 this->error_count = 0;
4464301d 21 this->waiting = false;
ded56b35
AW
22}
23
24void TemperatureControl::on_module_loaded(){
25
81b547a1 26 // We start not desiring any temp
ded56b35
AW
27 this->desired_adc_value = UNDEFINED;
28
29 // Settings
7dd8133c 30 this->on_config_reload(this);
ded56b35
AW
31
32 this->acceleration_factor = 10;
33
d9ebc974 34 this->kernel->slow_ticker->attach( 20, this, &TemperatureControl::thermistor_read_tick );
ded56b35
AW
35
36 // Register for events
df27a6a3 37 this->register_for_event(ON_GCODE_EXECUTE);
b0be67b5 38 this->register_for_event(ON_GCODE_RECEIVED);
df27a6a3 39 this->register_for_event(ON_MAIN_LOOP);
ded56b35
AW
40
41}
42
3c132bd0 43void TemperatureControl::on_main_loop(void* argument){ }
7dd8133c
AW
44
45// Get configuration from the config file
46void TemperatureControl::on_config_reload(void* argument){
47
1306ba99
AW
48 // General config
49 this->set_m_code = this->kernel->config->value(temperature_control_checksum, this->name_checksum, set_m_code_checksum)->by_default(104)->as_number();
50 this->set_and_wait_m_code = this->kernel->config->value(temperature_control_checksum, this->name_checksum, set_and_wait_m_code_checksum)->by_default(109)->as_number();
51 this->get_m_code = this->kernel->config->value(temperature_control_checksum, this->name_checksum, get_m_code_checksum)->by_default(105)->as_number();
8c309ca9 52 this->readings_per_second = this->kernel->config->value(temperature_control_checksum, this->name_checksum, readings_per_second_checksum)->by_default(5)->as_number();
7dd8133c 53
b0be67b5
MM
54 this->designator = this->kernel->config->value(temperature_control_checksum, this->name_checksum, designator_checksum)->by_default(string("T"))->as_string();
55
7dd8133c 56 // Values are here : http://reprap.org/wiki/Thermistor
423df6df
AW
57 this->r0 = 100000;
58 this->t0 = 25;
a98f72da
AW
59 this->beta = 4066;
60 this->vadc = 3.3;
423df6df
AW
61 this->vcc = 3.3;
62 this->r1 = 0;
63 this->r2 = 4700;
a98f72da 64
3c132bd0 65 // Preset values for various common types of thermistors
df27a6a3 66 ConfigValue* thermistor = this->kernel->config->value(temperature_control_checksum, this->name_checksum, thermistor_checksum);
423df6df
AW
67 if( thermistor->value.compare("EPCOS100K" ) == 0 ){ // Default
68 }else if( thermistor->value.compare("RRRF100K" ) == 0 ){ this->beta = 3960;
69 }else if( thermistor->value.compare("RRRF10K" ) == 0 ){ this->beta = 3964; this->r0 = 10000; this->r1 = 680; this->r2 = 1600;
70 }else if( thermistor->value.compare("Honeywell100K") == 0 ){ this->beta = 3974;
71 }else if( thermistor->value.compare("Semitec" ) == 0 ){ this->beta = 4267; }
a98f72da 72
3c132bd0 73 // Preset values are overriden by specified values
8c309ca9
L
74 this->r0 = this->kernel->config->value(temperature_control_checksum, this->name_checksum, r0_checksum )->by_default(100000)->as_number(); // Stated resistance eg. 100K
75 this->t0 = this->kernel->config->value(temperature_control_checksum, this->name_checksum, t0_checksum )->by_default(25 )->as_number() + 273.15; // Temperature at stated resistance, eg. 25C
76 this->beta = this->kernel->config->value(temperature_control_checksum, this->name_checksum, beta_checksum)->by_default(4066 )->as_number(); // Thermistor beta rating. See http://reprap.org/bin/view/Main/MeasuringThermistorBeta
77 this->vadc = this->kernel->config->value(temperature_control_checksum, this->name_checksum, vadc_checksum)->by_default(3.3 )->as_number(); // ADC Reference
78 this->vcc = this->kernel->config->value(temperature_control_checksum, this->name_checksum, vcc_checksum )->by_default(3.3 )->as_number(); // Supply voltage to potential divider
79 this->r1 = this->kernel->config->value(temperature_control_checksum, this->name_checksum, r1_checksum )->by_default(0 )->as_number();
80 this->r2 = this->kernel->config->value(temperature_control_checksum, this->name_checksum, r2_checksum )->by_default(4700 )->as_number();
7dd8133c 81
df27a6a3 82 // Thermistor math
3c132bd0 83 this->k = this->r0 * exp( -this->beta / this->t0 );
df27a6a3 84 if( r1 > 0 ){ this->vs = r1 * this->vcc / ( r1 + r2 ); this->rs = r1 * r2 / ( r1 + r2 ); }else{ this->vs = this->vcc; this->rs = r2; }
3c132bd0
AW
85
86 // Thermistor pin for ADC readings
87 this->thermistor_pin = this->kernel->config->value(temperature_control_checksum, this->name_checksum, thermistor_pin_checksum )->required()->as_pin();
88 this->kernel->adc->enable_pin(this->thermistor_pin);
89
90 // Heater pin
91 this->heater_pin = this->kernel->config->value(temperature_control_checksum, this->name_checksum, heater_pin_checksum)->required()->as_pin()->as_output();
92 this->heater_pin->set(0);
7dd8133c
AW
93
94}
95
b2b0b56d
AW
96//#pragma GCC push_options
97//#pragma GCC optimize ("O0")
db453125 98
b0be67b5
MM
99void TemperatureControl::on_gcode_received(void* argument)
100{
101 Gcode* gcode = static_cast<Gcode*>(argument);
102 if (gcode->has_m)
103 {
104 // Get temperature
105 if( gcode->m == this->get_m_code ){
106// gcode->stream->printf("get temperature: %f current:%f target:%f bare_value:%u \r\n", this->get_temperature(), this->new_thermistor_reading(), this->desired_adc_value, this->kernel->adc->read(this->thermistor_pin) );
107 gcode->stream->printf("%s:%3.1f /%3.1f ", this->designator.c_str(), this->get_temperature(), ((this->desired_adc_value == UNDEFINED)?0.0:this->adc_value_to_temperature(this->desired_adc_value)));
108 }
109 }
110}
db453125 111
ded56b35
AW
112void TemperatureControl::on_gcode_execute(void* argument){
113 Gcode* gcode = static_cast<Gcode*>(argument);
e6b5ae25
AW
114 if( gcode->has_m){
115 // Set temperature without waiting
116 if( gcode->m == this->set_m_code && gcode->has_letter('S') ){
117 //gcode->stream->printf("setting to %f meaning %u \r\n", gcode->get_value('S'), this->temperature_to_adc_value( gcode->get_value('S') ) );
eabf7a9b
MM
118 if (gcode->get_value('S') == 0)
119 {
120 this->desired_adc_value = UNDEFINED;
121 this->heater_pin->set(0);
122 }
123 else
124 {
df27a6a3
MM
125 this->set_desired_temperature(gcode->get_value('S'));
126 }
eabf7a9b 127 }
e6b5ae25
AW
128 // Set temperature and wait
129 if( gcode->m == this->set_and_wait_m_code && gcode->has_letter('S') ){
eabf7a9b
MM
130 if (gcode->get_value('S') == 0)
131 {
132 this->desired_adc_value = UNDEFINED;
133 this->heater_pin->set(0);
134 }
135 else
136 {
e6b5ae25 137 this->set_desired_temperature(gcode->get_value('S'));
df27a6a3
MM
138 // Pause
139 this->kernel->pauser->take();
140 this->waiting = true;
141 }
eabf7a9b 142 }
df27a6a3 143 }
ded56b35
AW
144}
145
b2b0b56d 146//#pragma GCC pop_options
db453125
AW
147
148
ded56b35
AW
149void TemperatureControl::set_desired_temperature(double desired_temperature){
150 this->desired_adc_value = this->temperature_to_adc_value(desired_temperature);
ded56b35
AW
151}
152
153double TemperatureControl::get_temperature(){
ded56b35
AW
154 return this->adc_value_to_temperature( this->new_thermistor_reading() );
155}
156
157double TemperatureControl::adc_value_to_temperature(double adc_value){
158 double v = adc_value * this->vadc; // Convert from 0-1 adc value to voltage
159 double r = this->rs * v / ( this->vs - v ); // Resistance of thermistor
160 return ( this->beta / log( r / this->k )) - 273.15;
161}
162
163double TemperatureControl::temperature_to_adc_value(double temperature){
df27a6a3 164 double r = this->r0 * exp( this->beta * ( 1 / (temperature + 273.15) -1 / this->t0 ) ); // Resistance of the thermistor
ded56b35
AW
165 double v = this->vs * r / ( this->rs + r ); // Voltage at the potential divider
166 return v / this->vadc * 1.00000; // The ADC reading
167}
168
8b8b3339 169uint32_t TemperatureControl::thermistor_read_tick(uint32_t dummy){
ded56b35 170 if( this->desired_adc_value != UNDEFINED ){
36a3f3f0
MM
171 double r = this->new_thermistor_reading();
172 if ((r > 0.01) &&
173 (r < 0.99) &&
174 (r > this->desired_adc_value))
175 {
df27a6a3 176 this->heater_pin->set(1);
36a3f3f0
MM
177 }
178 else
179 {
180 if (((r <= 0.01) || (r >= 0.99)) && (this->desired_adc_value != UNDEFINED))
181 {
182 this->kernel->streams->printf("MINTEMP triggered on P%d.%d! check your thermistors!\n", this->thermistor_pin->port_number, this->thermistor_pin->pin);
183 this->desired_adc_value = UNDEFINED;
184 }
df27a6a3 185 this->heater_pin->set(0);
36a3f3f0
MM
186 if (this->waiting)
187 {
81b547a1 188 this->kernel->pauser->release();
df27a6a3 189 this->waiting = false;
81b547a1 190 }
ded56b35
AW
191 }
192 }
281967e4 193 return 0;
ded56b35
AW
194}
195
196double TemperatureControl::new_thermistor_reading(){
3c132bd0
AW
197
198 double new_reading = double( double(this->kernel->adc->read(this->thermistor_pin) / double(1<<12) ) );
ded56b35
AW
199
200 if( this->queue.size() < 15 ){
201 this->queue.push_back( new_reading );
ded56b35
AW
202 return new_reading;
203 }else{
204 double current_temp = this->average_adc_reading();
df27a6a3 205 double error = fabs(new_reading - current_temp);
ded56b35
AW
206 if( error < 0.1 ){
207 this->error_count = 0;
208 double test;
df27a6a3 209 this->queue.pop_front(test);
ded56b35
AW
210 this->queue.push_back( new_reading );
211 }else{
212 this->error_count++;
213 if( this->error_count > 4 ){
214 double test;
df27a6a3 215 this->queue.pop_front(test);
ded56b35 216 }
df27a6a3 217 }
ded56b35
AW
218 return current_temp;
219 }
220}
221
222
223double TemperatureControl::average_adc_reading(){
76bb4c37
BG
224 double total = 0;
225 int j = 0;
ded56b35
AW
226 int reading_index = this->queue.head;
227 while( reading_index != this->queue.tail ){
228 j++;
229 total += this->queue.buffer[reading_index];
230 reading_index = this->queue.next_block_index( reading_index );
231 }
232 return total / j;
233}
234
235
236