2015-12-05 05:30 AM
How you can warm up resistor. I have the task of warming up resistor to set the temperature with PID controller via usart. Please help !
microcontoller: STM32F411RE2015-12-05 10:14 AM
Is this a project for a class?
2015-12-06 05:02 AM
No this is a project for me to pass the semester
I have to warming up resistor by transistor2015-12-06 08:14 AM
I will be buying STM32F411, so i could help.
I don't know exact how it must be done, but i would place NTC thermistor connected to ADC to read temperature ( i have programs for this) and use PWM signal and n-ch mosfet to put some energy into load resistor. NTC must be thermally coupled with resistor you are warming up. For uart, it is very easy, simply get FT232 uart converter, use STM32 examples on interrupt UART, so you send single number for temperature (like 255=100C, 0 = 10C) or be smarter and use larger string for more resolution/control Tricky part PID, it is very hard not to overshoot your target and get into oscillation, even i struggle to do this ( basically, you can't take heat, only give, that is problem, you will need adaptive PID or be smart how you implement it)