One of the projects I really wanted to get back to when I joined the Austin TechShop was my Reflow Oven based on a Toaster Oven. The first prototype I made was a mess of AC wiring boxes with an Arduino sitting on the side. While the oven did work, it was far from pretty. Making use of the laser cutter, large workspaces, and friendly members at TS Austin, I was finally able to put together my 2nd prototype.
The advantage of this oven design is that it doesn’t require any modifications to an existing toaster oven. So you could, in theory, plug in any oven you can find. In my case, I went to Goodwill and found a suitable oven.
The board used in this video is the latest revision of my Accurate RTC Arduino Shield based on the Maxim DS3231. The second revision is entirely self contained and only requires USB for power. When connected, USB serial ouptut does provide some data about the reflow process.
The project is far form complete. There’s a number of changes I want to make include:
Incorporating a keypad (or rotary encoder) on the front panel, to enable changes to the reflow profile
A 4×20 LCD Panel
Power Switch *grin*
Move DC power jack to the back and disable “power by USB”
Custom PCB based on the ATmega32u4 instead of the Arduino Uno ATmega328
An all acrylic enclosure
If you are interested, this is the processing code I used to track the incoming serial stream. Keep in mind the image above has been flipped (the code draws the curve “upside down.”)
// Simple Reflow Graphing sketch
// James Lewis
// [email protected]
// www.baldengineer.com
// Created 06 JAN 2013
// This example code is in the public domain.
import processing.serial.*;
Serial myPort; // The serial port
int xPos = 1; // horizontal position of the graph
void setup () {
// set the window size:
size(1000, 350);
// List all the available serial ports
println(Serial.list());
// In this case, 11 was the Arduino I used for the Reflow Oven, on my Mac.
myPort = new Serial(this, Serial.list()[11], 9600);
// don't generate a serialEvent() unless you get a newline character:
myPort.bufferUntil('n');
}
void draw () {
// everything happens in the serialEvent()
}
void serialEvent (Serial myPort) {
// get the ASCII string:
String inString = myPort.readStringUntil('n');
print(inString);
if (inString != null) {
// trim off any whitespace:
inString = trim(inString);
String[] list = split(inString, ',');
/* Output from Oven Code
Time Setpoint Input Output
1 150.00 22.00 2000.00
2 150.00 21.75 2000.00
3 150.00 22.00 2000.00
4 150.00 22.00 2000.00
5 150.00 21.75 2000.00
6 150.00 22.00 2000.00
*/
// convert current temp to float
float currentTemp = float(list[2]);
// draw the point
point(float(list[0]), currentTemp);
}
}
Fan of making things beep, blink and fly. Created AddOhms. Writer for Hackster.io News. Freelance electronics content creator for hire! KN6FGY and, of course, bald.
Like other websites, this one uses cookies to remember things. Mostly, I use Google Analytics to know how many people come here. ¯\_(ツ)_/¯
By clicking “Accept”, you consent to the use of ALL the cookies.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Cookie
Duration
Description
cookielawinfo-checkbox-advertisement
1 year
Set by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Advertisement" category .
cookielawinfo-checkbox-analytics
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional
11 months
The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
CookieLawInfoConsent
1 year
Records the default button state of the corresponding category & the status of CCPA. It works only in coordination with the primary cookie.
viewed_cookie_policy
11 months
The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Cookie
Duration
Description
language
session
This cookie is used to store the language preference of the user.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Cookie
Duration
Description
_ga
2 years
The _ga cookie, installed by Google Analytics, calculates visitor, session and campaign data and also keeps track of site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors.
_ga_LHR6J24XSY
2 years
This cookie is installed by Google Analytics.
_gat_gtag_UA_42726312_1
1 minute
Set by Google to distinguish users.
_gid
1 day
Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website's performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously.
browser_id
5 years
This cookie is used for identifying the visitor browser on re-visit to the website.
CONSENT
2 years
YouTube sets this cookie via embedded youtube-videos and registers anonymous statistical data.
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Cookie
Duration
Description
VISITOR_INFO1_LIVE
5 months 27 days
A cookie set by YouTube to measure bandwidth that determines whether the user gets the new or old player interface.
YSC
session
YSC cookie is set by Youtube and is used to track the views of embedded videos on Youtube pages.
yt-remote-connected-devices
never
YouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt-remote-device-id
never
YouTube sets this cookie to store the video preferences of the user using embedded YouTube video.
yt.innertube::nextId
never
This cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
yt.innertube::requests
never
This cookie, set by YouTube, registers a unique ID to store data on what videos from YouTube the user has seen.
2 Comments
Thanks for sharing! I added a chart to your code: https://github.com/twasiluk/arduino/tree/master/processing/oven.