forked from teo666/Universal-Motor-Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Universal-Motor-Controller.ino
495 lines (401 loc) · 13.5 KB
/
Universal-Motor-Controller.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
/**********************************************************************************************
* Arduino Universal Motor Controller - Version 1.0.2
* by teo Basili <[email protected]> https://github.com/teo666
**********************************************************************************************/
//#define TEST_MODE
#include "PID_ASYNC.h"
#include "pin_definition.h"
#define ZCD_FAIL_LIMIT 2500
#define TACHO_FAIL_LIMIT 5000
#include <EEPROM.h>
PID *motor_PID;
volatile uint16_t zcd_tick_log = 0;
volatile uint16_t tacho_tick_log = 0;
volatile uint16_t tick_after_zcd = 0;
volatile uint16_t tick_after_tacho = 0;
volatile uint8_t triac_state = 0;
// questa cosa del delay count mi serve per evitare di usare le funzioni di tempo di arduino
volatile uint8_t delay_count = 0;
volatile uint8_t delay_allow = 0;
uint16_t tick_per_phase = 0;
/*in alcune circostanze (dovute a problemi induttivi dal momento che ho potuto
registrarli solamente a motore connesso???) capita che il circuito zcd presenti
dei disturbi che fanno si' che alla sua uscita compaiano dei picchi di tensione
che alterano il corretto fasamento; questi picchi tuttavia hanno una durata
molto breve rispetto al tempo in cui l'onda quadra dello zcd si trova a livello
logico alto, per cui utilizzo questa variabile per distinguere tali valori
- al cambiamento dello stato di uscita dello zdc azzero dei parametri, compreso
zcd_error_correction
- controllo periodicamente (nell-interrupt del timer) il valore di ingresso
dello zcd: se e' HIGH incremento zcd_error_correction altrimenti non faccio
niente
- se dopo un po' di tempo tale valore raggiunge un valore limite (10) allora la
mi sto trovando nel punto un cui lo zcd e' effettivamente in fase e non si e'
presentato il disturbo
*/
volatile uint8_t zcd_error_correction = 0;
volatile uint8_t found_correct_main_phase = 0;
volatile uint8_t tacho_error_correction = 0;
volatile uint8_t found_correct_tacho_phase = 0;
/*
variabili per la lettura dei valori analogici, contengono il valore delle
letture
*/
volatile uint8_t HIGH_ANALOG_REG = 0;
volatile uint8_t LOW_ANALOG_REG = 0;
volatile uint8_t frequency_calc_added = 0;
// il range dell' output va da 0 a 485, a 0 il motore gira a foo 485 val minimo
volatile uint16_t output = 65535; // max value
volatile uint16_t tacho_min_speed_value = 0;
volatile uint16_t tacho_max_speed_value = 0;
uint16_t output_min_speed_value = 0;
uint16_t output_max_speed_value = 0;
// variabili del pid
double Setpoint, Input, Output;
volatile uint8_t computeBarrier = 0;
volatile uint16_t delay_counter = 0;
volatile uint16_t last_delay_counter = 0;
//////////////////// FUNZIONI DI UTILITA' ///////////////////////
uint8_t my_digital_read(uint8_t port_reg, uint8_t bit) {
if (port_reg & _BV(bit))
return 1;
return 0;
}
void limit(volatile uint16_t *val, uint16_t min, uint16_t max) {
if (*val > max) {
*val = max;
} else if (*val < min) {
*val = min;
}
}
uint16_t calculate_main_power_frequency() {
uint8_t frequency_calc = 0;
uint32_t tick_sum = 0;
while (frequency_calc < 20) {
if (frequency_calc_added) {
frequency_calc_added = 0;
tick_sum += zcd_tick_log;
frequency_calc++;
}
}
return tick_sum / 20;
}
void check_programming_button() {
// se il bottone e' pigiato chiededre di rilasciarlo
if (!my_digital_read(PIND, PROG_PIN)) {
Serial.println("Release programming button, please");
while (!my_digital_read(PIND, PROG_PIN)) {
}
}
}
void button_hold_request(void (*loop)(), void (*on_exit)()) {
while (1) {
loop();
if (delay_allow) {
on_exit();
break;
}
}
}
void loop_read_fun() {
output =
map((HIGH_ANALOG_REG << 8) | LOW_ANALOG_REG, 1023, 0, 0, tick_per_phase);
}
//////////////////////////////////////////////////////////////////////
void save_low_speed_exit_fun() {
tacho_min_speed_value = tacho_tick_log;
output_min_speed_value = output;
EEPROM.write(0, tacho_min_speed_value >> 8);
EEPROM.write(1, tacho_min_speed_value);
EEPROM.write(2, output_min_speed_value >> 8);
EEPROM.write(3, output_min_speed_value);
Serial.print(F("LOW speed tacho set to: "));
Serial.print(tacho_min_speed_value);
Serial.print(F(" LOW speed output set to: "));
Serial.print(output_min_speed_value);
Serial.println(F(", saving ..."));
}
void save_high_speed_exit_fun() {
tacho_max_speed_value = tacho_tick_log;
output_max_speed_value = output;
if (tacho_max_speed_value > tacho_min_speed_value) {
Serial.println(F("The HIGH speed must be higher than LOW speed"));
// se il bottone e' pigiato chiededre di rilasciarlo
check_programming_button();
Serial.println(F("try again"));
} else {
EEPROM.write(4, tacho_max_speed_value >> 8);
EEPROM.write(5, tacho_max_speed_value);
EEPROM.write(6, output_max_speed_value >> 8);
EEPROM.write(7, output_max_speed_value);
Serial.print(F("HIGH speed tacho set to: "));
Serial.print(tacho_max_speed_value);
Serial.print(F(" HIGH speed output set to: "));
Serial.print(output_max_speed_value);
Serial.println(F(", saving ..."));
}
}
#ifdef TEST_MODE
Coefficient k_param;
String serial_read;
// funzione di ricerca dei parametri del pid
CoefficientPtr search() { return &k_param; }
#else
#include "configuration.h"
#endif
void setup() {
INIT_TRIAC_LOG();
INIT_ZCD_LOG();
INIT_TACHO_LOG();
INIT_TRIAC();
INIT_PROG_BUTTON();
INIT_ZCD();
INIT_TACHO();
// abilita le interruzioni sul pin 3 e 2 di arduino (bit meno significativo e'
// il 2) pin 3 = int1 pin 2 = int0
EIMSK = 0b00000011;
////////////////32
// interruzioni sul rising e falling edge 01, 11 solo rising
EICRA = 0b00001111;
/* configurazione timer 2
* quindi il valore della variabile putput e' compreso fra 0 e 625
*/
TCCR2A = 0b00000011;
TCCR2B = 0b00000001;
TIMSK2 = 0b00000001;
#ifdef TEST_MODE
// abilito le interruzioni del timer per la serial.available
TIMSK0 = 0b00000001;
#else
// disabilito interruzioni timer 0
TIMSK0 = 0b00000000;
#endif
// settaggio della lettura analogica
// setto il voltaggio di riferimento del convertitore alla tensione di
// alimentazione e il multiplexer per la lettura
ADMUX = (1 << 6) | (SPEED_READ & 0x07);
// abilito l'ADC, le interruzioni hardware e il prescaler a 128 per letture
// accurate su 10bit
ADCSRA = 0b10001111;
// non setto le lettura automatiche utilizzando il registro ADCSRB perche le
// lancio a mano
Serial.begin(9600);
zcd_tick_log = 0;
tick_after_zcd = 0;
uint16_t prog_output = 0;
Serial.println(F("Calculating frequency ..."));
tick_per_phase = calculate_main_power_frequency();
Serial.print(F("Number of tick per half period: "));
Serial.println(tick_per_phase);
if (!my_digital_read(PIND, PROG_PIN)) {
Serial.println(F("Programming mode"));
// se il bottone e' pigiato chiededre di rilasciarlo
check_programming_button();
prog_output = (HIGH_ANALOG_REG << 8) | LOW_ANALOG_REG;
if (prog_output) {
Serial.println(F("Turn speed potentiometer to lowest value ..."));
while (prog_output) {
prog_output = (HIGH_ANALOG_REG << 8) | LOW_ANALOG_REG;
}
}
// se il bottone e' pigiato chiededre di rilasciarlo
check_programming_button();
Serial.println(
F("Turn potentiometer to increase speed and reach desire LOW speed, "
"once done press and hold programming button ..."));
button_hold_request(&loop_read_fun, &save_low_speed_exit_fun);
// se il bottone e' pigiato chiededre di rilasciarlo
check_programming_button();
Serial.println(
F("Turn potentiometer to increase speed and reach desire HIGH speed, "
"once done press and hold programming button ..."));
button_hold_request(&loop_read_fun, &save_high_speed_exit_fun);
Serial.println(F("Configuration completed, enjoy!"));
// impedisce la modalita' manuale quando si esce dal settaggio
check_programming_button();
}
Serial.println(F("Operating mode"));
Serial.println(F("Reading paramters ..."));
tacho_min_speed_value = (EEPROM.read(0) << 8) | EEPROM.read(1);
output_min_speed_value = (EEPROM.read(2) << 8) | EEPROM.read(3);
tacho_max_speed_value = (EEPROM.read(4) << 8) | EEPROM.read(5);
output_max_speed_value = (EEPROM.read(6) << 8) | EEPROM.read(7);
Serial.print(F("LOW speed tacho value: "));
Serial.print(tacho_min_speed_value);
Serial.print(F(", HIGH speed tacho value: "));
Serial.println(tacho_max_speed_value);
Serial.print(F("LOW speed output value: "));
Serial.print(output_min_speed_value);
Serial.print(F(", HIGH speed output value: "));
Serial.println(output_max_speed_value);
#ifndef TEST_MODE
init_params();
#endif
output = output_min_speed_value;
Output = output;
motor_PID = new PID(&Input, &Output, &Setpoint, P_ON_M, &search,
&tacho_tick_log, DIRECT);
// TODO quando sopra un certo livello azzerare il valore di output per rendere
// il rallentamento migliore
motor_PID->SetOutputLimits(
0, output_min_speed_value +
(abs(tick_per_phase - output_min_speed_value) >> 1));
motor_PID->SetMode(AUTOMATIC);
#ifndef TEST_MODE
//Serial.end();
#endif
}
volatile uint8_t _tacho_trig = 0;
void loop() {
// valore del potenziometro
Setpoint = map(((HIGH_ANALOG_REG << 8) | LOW_ANALOG_REG), 0, 1023,
tacho_min_speed_value, tacho_max_speed_value);
if (my_digital_read(PIND, PROG_PIN)) {
motor_PID->SetMode(AUTOMATIC);
Input = tacho_tick_log;
if (computeBarrier) {
motor_PID->Compute();
computeBarrier = 0;
}
#ifdef TEST_MODE
if (delay_counter - last_delay_counter > 60000) {
if (Serial.available()) {
serial_read = Serial.readString();
String K = serial_read.substring(0, 2);
if (K.equals("kp")) {
k_param.Kp = serial_read.substring(2).toFloat();
} else if (K.equals("ki")) {
k_param.Ki = serial_read.substring(2).toFloat();
} else if (K.equals("kd")) {
k_param.Kd = serial_read.substring(2).toFloat();
} else {
Serial.print("invalid arguments");
}
Serial.print("Kp: ");
Serial.print(k_param.Kp, 8);
Serial.print(" Ki: ");
Serial.print(k_param.Ki, 8);
Serial.print(" Kd:");
Serial.println(k_param.Kd, 8);
}
Serial.print("Setpoint: ");
Serial.print(Setpoint);
Serial.print(" Input: ");
Serial.print(Input);
Serial.print(" Output: ");
Serial.println(Output);
last_delay_counter = delay_counter;
}
#endif
output = Output;
} else {
motor_PID->SetMode(MANUAL);
output = map(((HIGH_ANALOG_REG << 8) | LOW_ANALOG_REG), 0, 1023,
tick_per_phase, 0);
}
/**
* rendo il codice invulnerabile ai cambiamenti di frequenza della AC
* in realta' ad essere precisi dovrei ricalcolare i valori limite di
* velocita', ma per cambiamenti minimi (che dovrebbero essere la
* regola) non e' necessario
* */
tick_per_phase = zcd_tick_log;
/**
* zcd circuit fault: in caso di fault dello zcd disabilito il triac e
* imposto l'output al massimo valore, equivale a motore spento
* questa cosa puo' essere fatta anche nel isr, valutare se lasciare qui o
* spostare
* */
if (tick_after_zcd > ZCD_FAIL_LIMIT) {
output = 65535;
TURN_OFF_TRIAC();
}
/**
* rilevamento blocco del motore
* */
if (tick_after_tacho > TACHO_FAIL_LIMIT) {
//do something
//Serial.println("hang detection");
/*output = 65535;
TURN_OFF_TRIAC();*/
}
}
// handler dell' interrupt associato al pin 2 di arduino
// utilizzato per la sincronizzazione di fase, e' connesso
// all'uscita del circuito di ZCD
ISR(INT0_vect) {
zcd_error_correction = 0;
found_correct_main_phase = 0;
// lancia una lettura del valore analogico
ANALOG_READ();
}
// handler dell' interrupt associato al pin 3 di arduino
// utilizzato per il rilevamento del tacogeneratore
ISR(INT1_vect) {
tacho_error_correction = 0;
found_correct_tacho_phase = 0;
}
// interrupt associato al timer, all'interno di una semionda della rete
// effettua dei controlli periodici, quali l'incremento del contatore
// per poter far si che il bottone do programmazione funzioni c'e' bisogno dello
// zcd
ISR(TIMER2_OVF_vect) {
//
// zcd
//
if (my_digital_read(PIND, ZCD_INPUT)) {
zcd_error_correction++;
}
if (zcd_error_correction > 10 && !found_correct_main_phase) {
zcd_tick_log = tick_after_zcd;
frequency_calc_added = 1;
if (!my_digital_read(PIND, PROG_PIN) && !delay_allow) {
delay_count++;
} else {
delay_count = 1;
delay_allow = 0;
}
if (!delay_count) {
delay_allow = 1;
}
tick_after_zcd = 0;
// spegni il triac
TURN_OFF_TRIAC();
triac_state = 0;
found_correct_main_phase = 1;
}
//
// tacho
//
if (my_digital_read(PIND, TACHO_INPUT)) {
tacho_error_correction++;
}
if (tacho_error_correction > 15 && !found_correct_tacho_phase) {
tacho_tick_log = tick_after_tacho;
computeBarrier = 1;
tick_after_tacho = 0;
found_correct_tacho_phase = 1;
#ifdef TEST_MODE
_tacho_trig = !_tacho_trig;
if (_tacho_trig) {
TURN_ON_TACHO_LOG();
} else {
TURN_OFF_TACHO_LOG();
}
#endif
}
//////////////////////////////////////
tick_after_zcd++;
tick_after_tacho++;
delay_counter++;
if (tick_after_zcd >= output && !triac_state) {
// accendi il triac
TURN_ON_TRIAC();
triac_state = 1;
}
}
// al completamento della lettura del valore del potenziometro salva i valori
ISR(ADC_vect) {
LOW_ANALOG_REG = ADCL;
HIGH_ANALOG_REG = ADCH;
}