Alright, it’s time to make our smelter actually do something. After a long night I have the majority of our code, if not all, ready to go and probably buggy with the help of ChatGPT.

Lets start with our NodeMCU / Ardunio / ESP8266. We’ll need the arduino IDE set up for this with the ESP libraries installed and all that. I already have that built and that set up is beyond the scope of this article. It’s pretty easy these days, just go to the library manager and add it.

Get the parts to build this here.

Anyway, here is the code for the microcontroller (NodeMCU, Arduino, ESP8266, Microcontroller, same difference):

So that’s C++ there. I’ll let you in on a little secret, I didn’t exactly write that. That code was generated by ChatGPT4 and I’ll tell you what. That thing isn’t taking a programmer’s job just yet. I had to make it make numerous revisions and corrections to the code which required me to know how to explain what I wanted the code to do in algorithm speak and also required me to be able to read the code to ensure it did what it was supposed to do.

See the article “Coding with ChatGPT” to get a full breakdown on this process.

So we’ll deposit that code on the NodeMCU.

Now we need a server. When I say server I mean a lot of things. We need a host, I’m partial to supermicro; we need a hypervisor, I like vmware, kinda; we need a VM, Debian is my favorite; and lastly we need the server application. We’re only going to discuss the Node.JS server application here. The rest of that perhaps we’ll discuss someday, there’s at least a million tutorials out there for each.

So our node.js app needs to do a few things.

  1. Web form input to receive the series of timer values and temperatures
  2. Server the web content
  3. Pass each round of timer and temp to the NodeMCU
  4. Time the timer and pass the next stage of values once the time expires
  5. Be a watchdog to notify us if the NodeMCU crashes (unfortunately that is not uncommon)
  6. Receive status updates from the NodeMCU (time and temp)
  7. Pass the current time and temp from the NodeMCU to a web page for monitoring

And here’s the code:

The code above may not be right. ChatGPT kind of lost it in there. The code blocks for formatting the text display were out of place so parts of the code were outside the code block and it just stopped outputting about half way through and I had to prompt it to continue. I’ll update it once I launch it on our server.

Next we need some code to display the current situation in a web page.

And that’s our code for now. Think it’s at all functional? Lets find out.

Well it has a lot of problems. For one it will only run as root but that may be on me. Also the UDP listener appears to be suffering from hearing loss. The html pages are really decent. Pretty handy not to have to mess around with a web server or any of that.

I’ve spent about 5 hours refining the code and asking chatGPT to rewrite sections and it’s still not usable. I’ll come back with some good code later and we’ll wrap this up.

Until then…

4 Replies to “DIY Computerized Electric Smelter/Furnace/Oven/Kiln – Part 2”

Leave a Reply

Your email address will not be published. Required fields are marked *