element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Ben Heck Featured Content
  • Challenges & Projects
  • element14 presents
  • element14's The Ben Heck Show
  • Ben Heck Featured Content
  • More
  • Cancel
Ben Heck Featured Content
Documents Ben's Home-Brew Solder Reflow Oven 2.0 Episode -- Episode 116
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Ben Heck Featured Content to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Engagement
  • Author Author: pchan
  • Date Created: 17 Jan 2014 3:24 PM Date Created
  • Last Updated Last Updated: 10 Jan 2014 8:24 AM
  • Views 5282 views
  • Likes 4 likes
  • Comments 39 comments
Related
Recommended

Ben's Home-Brew Solder Reflow Oven 2.0 Episode -- Episode 116

image

element14's The Ben Heck Show

Join the Ben Heck team every week for amazing hacks! Watch them build and mod community-inspired projects using electronics!

Back to The Ben Heck Show homepage image

Connect with TBHS
Featured Bonus Materials
See All Episodes

 

 

You don't have permission to edit metadata of this video.
Edit media
x
image
Upload Preview
image
Ben's fed-up with the difficulty of soldering surface-mount components by hand and builds a new reflow oven to keep in his shop. He transforms an inexpensive toaster over into a vital tool for electronics engineers and tinkerers. In this updated oven, he uses two thermal couples to ensure even heat distribution and effective reflow.
  • 116:
  • reflow
  • ben's
  • solder
  • episode
  • 2.0
  • oven
  • ben_heck
  • heck
  • ben
  • tbhs_ep
  • home-brew
  • Share
  • History
  • More
  • Cancel
  • Sign in to reply

Top Comments

  • colecago
    colecago over 11 years ago in reply to mazzmn +1
    I'm not sure, but I bet most IC sensors wouldn't work well inside an oven, too hot. As for the Thermocouple, you don't need the translation IC, you could just use an Op-amp and math if you know the specs…
  • Sabrina
    Sabrina over 11 years ago in reply to Former Member +1
    Hi- You can see the details available for this show on Ben's blog- Episode 116 Project Files
  • bigdog1
    bigdog1 over 10 years ago in reply to clem57 +1
    thank you.
Parents
  • benheck
    benheck over 11 years ago

    http://www.element14.com/community/community/experts/benheck/blog/2014/01/17/episode-116-project-files

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • colecago
    colecago over 11 years ago in reply to benheck

    For anyone building at home and modifying the profiles

     

    int profiles = 0;

     

     

    int profile[4][6] = {

      {

        75,140,45,125,205,20                                    }

      ,

      {

        75,140,45,125,205,20                                    }

      ,

      {

        75,140,45,125,205,20                                    }

      ,

      {

        75,140,45,125,205,20                                    }

    };

     

     

    String profileNames[4] = {

      "Ol' Fashioned Pb", "New Fangled RoHS", "Profile 3       ", "Profile 4       "

    };

     

    the format of the profiles is {Ramp 1 0-255, 1st target temp, hold seconds at 1st target, Ramp 2, 2nd target temp, hold seconds at 2nd target} 

    Ramp rate is kind of a misnomer, its just the analog write value but because our relay is a zero cross and we aren't accounting for the cross, it doesn't exactly work as good as a PWM value would.

     

    The ROHS profile definitely needs changing, probably a 220 target.  Your results may vary but you will definitely have to tweak for your own oven and possibly it could change depending on your board as well.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • Former Member
    Former Member over 10 years ago in reply to colecago

    Hi,

    If I understand this correctly the profile is broken into triplets (ie PWM,Temp, Sec to hold @ temp) and that repeats. So looking at this there it ramps twice but my question if my assumptions are correct is can you add another triplet on to the profile (ie preheat triplet, soak triplet, reflow triplet)?

     

    Thank you.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • Former Member
    Former Member over 10 years ago in reply to colecago

    Hi,

    If I understand this correctly the profile is broken into triplets (ie PWM,Temp, Sec to hold @ temp) and that repeats. So looking at this there it ramps twice but my question if my assumptions are correct is can you add another triplet on to the profile (ie preheat triplet, soak triplet, reflow triplet)?

     

    Thank you.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
  • colecago
    colecago over 10 years ago in reply to Former Member

    It's been awhile but I don't think the code is set up that way, its set to ramp to a first setpoint, the soak, then ramp to the reflow temp, it holds, then turns off.  You could modify the code to allow a third setpoint yourself though.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube