Hi all,
So, after my previous successful project I am ready to try something more outside of my comfort zone. I'm a beginner level hobbyist/designer. I've created over 8 DIY machines like 3D printers, a laser cutter and more, but I've never really created my own schematics.
This time: A hot wire foam cutter with adjustable heat settings!
The entire cutter is already constructed but I'm struggling a little bit with the electronics. The PSU is too powerful to use directly and will turn the hot wire into a lamp and then the hot wire melts. So I'm setting out on creating a little circuit to make it all work.
For starters I have already learned how to:
- Read analog potentiometer values with an Arduino Uno
- Turn these values into a PWM signal
- Use this signal to speed control a 5v fan
It was all pretty straightforward, I built this circuit to make it all work:
And I used this script to run it:
#define PWM_PIN 3
int val = 0;
//the setup routine runs once when you press reset:
void setup() {
pinMode(PWM_PIN, OUTPUT);
analogWrite(PWM_PIN, 0);
delay(1000);
}
void loop(){
val = analogRead( A0 );
analogWrite(PWM_PIN, val );
}
That was a good exercise to learn today. Now, my issue lies in the fact that I now want to convert the schematic to use on the wire cutter instead of turning on a simple 5v fan.
Parts that I have available:
- Arduino Uno
- IRLB8743 mosfet (plus heatsink)
- 1K Ohm potentiometer (also bought a 10K Ohm one)
- 15v 4A external PSU
- Nichrome wire (various sizes)
Optional (I'm assuming these are needed):
- Diode + Zener diode
- Optocoupler
I'm getting stuck on working out how to connect up the power supply to the mosfet safely and keeping the Uno safe. I understand that the mosfet serves to make a kind of voltage divider between the Uno and the hot wire (which is basically a low value resistor).
This is how I think it should work but I'm unsure and don't want to blow anything up (used a buck converter as a stand-in for the 15v 4A PSU):
I hope I'm not too far off. I will probably swap the Uno for a Nano once I get it working. And I will use a buck converter to also run the Nano from the 15v PSU to make it 5v.
Thanks for your time