Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. My Project
  3. SMD Reflow Oven / PID

SMD Reflow Oven / PID

Scheduled Pinned Locked Moved My Project
23 Posts 6 Posters 4.5k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • NeverDieN NeverDie

    Maybe this, or one like it? There are a ton of them on ebay.
    https://www.ebay.com/itm/AC-110-240-Digital-PID-Temperature-controller-40A-SSR-K-thermocouple-Sensor/371134791350?epid=918051785&hash=item56695b7eb6:g:yRAAAOSwVFlUBBap
    Ah, but of course, I don't suppose they would follow a temperature profile....

    Mars WarriorM Offline
    Mars WarriorM Offline
    Mars Warrior
    wrote on last edited by Mars Warrior
    #9

    @neverdie Yup, cheap but no (adjustable) temperature profile...

    I just found it easier to use a reflow controller, as I had no idea how not using a profile would impact the soldering results.

    I bought a new, fairly cheap but good €70 oven, and the rest is second hand stuff for around €50; an OMRON SSR (40A), which gets barely warm during a reflow session, an osPID controller and a temperature sensor.

    I'm happy with the combination as it gives me reproducible results.

    Of course I have no results yet with real boards, but I'm confident that the reflow setup can be adjusted (longer pre-heat and soak times for instance) to meet the PCB, reflow paste and component requirements.

    As you can see below, the osPID profile is very easy to setup:

    RoHS24X		//first row is Profile Name with different crossings
    3, 40, 0	//Step Setpoint to 40, wait 0 seconds
    2, 0, 0		//Wait for PID Input to cross setpoint 
    127, 0, 1	//buzz for 1 second as a signal that the oven is starting to heat
    1, 150, 100	//PRE-HEAT: ramp setpoint to 150 degrees over the course of 100 seconds
    2, 5, 5		//Wait for PID Input to cross setpoint 
    1, 200, 120	//SOAK: ramp setpoint to 200 degrees over the course of 120 seconds
    2, 5, 5		//Wait for PID Input to cross setpoint 
    1, 240, 45	//REFLOW: ramp setpoint to 240  degrees over the course of 45 seconds
    2, 0, 0		//Wait for PID Input to cross setpoint
    1, 218, 30	//ramp setpoint to 218 (TAL) over the course of 30 seconds
    2, 5, 5		//Wait for PID Input to cross setpoint --> within 5 degrees, 5 seconds
    127, 0, 1	//buzz for 2 seconds as a signal to open the oven door
    1, 50, 150	//ramp setpoint to 50 over the course of 150 seconds
    2, 0, 0		//Wait for PID Input to cross setpoint
    127, 0, 2	//buzz for 2 seconds
    3, 20, 0	//Step Setpoint to 20, full cooldown!```
    1 Reply Last reply
    0
    • MiKaM Offline
      MiKaM Offline
      MiKa
      wrote on last edited by
      #10

      Have look here: http://www.whizoo.com/
      and source code: https://github.com/engineertype/ControLeo/tree/master/ControLeo/examples/ReflowWizard

      1 Reply Last reply
      1
      • Mars WarriorM Mars Warrior

        @toyman said in nRF5 action!:

        @mars-warrior said in nRF5 action!:

        OSPId reflow controller

        where did you get it?

        I bought it from someone else, but he bought it from Rocketstream
        OSPid

        ..
        In the mean time I learned how a PID controller works (approx) as described here with this nice GIF from Wikipedia:
        alt text

        And managed to get a very good implementation by OSPid of my (slightly modified) reflow profile for lead free solderpaste (max of 245 degrees):
        0_1527874404370_2018-06-01 (41) PID 2.50 160.00 40.00.png

        As you can see much better than my previous posted picture. Note that green = profile, and red is the actual temperature measurements.

        The original OOTB PID settings where 2/0.5/2 and I'm now using 2.5/160/40 which gives a very nice result!
        I increased the P value a bit. Made I much higher to make it follow the profile much, much, much better and used 40 for the D value to smoothen the temperature and prevent to much overshoot at 240 degrees.

        The only weird thing is that the oven is spec'd at max 230 degrees, but I already got it to 280 degrees (that was before I understood PID settings, I entered completely wrong ones) and burning the test PCB with the attached temperature sensor inside it:

        0_1527875047908_20180530_170859830_iOS2.jpg

        So now I have to make a real PCB and see if all this learning (using a stencil, applying solder paste, placing components, reflowing) can produce a working product :grinning:

        Since nobody seemed to be doing it, I just assumed it was too hard to get it to work...until you came along!

        :innocent:

        T Offline
        T Offline
        Toyman
        wrote on last edited by
        #11

        @mars-warrior said in nRF5 action!:

        In the mean time I learned how a PID controller

        Thanks!
        I have to admit I've acquired pretty decent understanding of PID while working on my sous-vide machine :-)

        1 Reply Last reply
        0
        • NeverDieN NeverDie

          There's starting to be some interesting solder paste dispensors on thingiverse, such as:
          https://www.thingiverse.com/thing:384680
          or
          https://www.thingiverse.com/thing:2123259

          I'd probably need a tool like one of those. I didn't have good enough technique dispensing manually directly from a solder paste syringe, and I never really warmed up to the idea of using stencils. Well, not yet anyway. Using non-leaded solder paste would make the whole thing more appealing. Since nobody seemed to be doing it, I just assumed it was too hard to get it to work...until you came along!

          T Offline
          T Offline
          Toyman
          wrote on last edited by
          #12

          @neverdie said in nRF5 action!:

          I didn't have good enough technique dispensing manually directly from a solder paste syringe,

          what did you have issues with?

          NeverDieN 1 Reply Last reply
          0
          • T Toyman

            @neverdie said in nRF5 action!:

            I didn't have good enough technique dispensing manually directly from a solder paste syringe,

            what did you have issues with?

            NeverDieN Offline
            NeverDieN Offline
            NeverDie
            Hero Member
            wrote on last edited by
            #13

            @toyman said in nRF5 action!:

            @neverdie said in nRF5 action!:

            I didn't have good enough technique dispensing manually directly from a solder paste syringe,

            what did you have issues with?

            It was very hard to extrude it, so I always seemed to either underextrude or overstrude. I found it very hard to get the right amount exactly where it should go by just manually pressing the plunger on the solder paste syringe that the material came in.

            T Nca78N 2 Replies Last reply
            0
            • NeverDieN NeverDie

              @toyman said in nRF5 action!:

              @neverdie said in nRF5 action!:

              I didn't have good enough technique dispensing manually directly from a solder paste syringe,

              what did you have issues with?

              It was very hard to extrude it, so I always seemed to either underextrude or overstrude. I found it very hard to get the right amount exactly where it should go by just manually pressing the plunger on the solder paste syringe that the material came in.

              T Offline
              T Offline
              Toyman
              wrote on last edited by
              #14

              @neverdie
              two hypothesis:
              a) old paste
              b) wrong needle gauge

              I use Mechanic XG paste, works perfect

              NeverDieN 1 Reply Last reply
              1
              • T Toyman

                @neverdie
                two hypothesis:
                a) old paste
                b) wrong needle gauge

                I use Mechanic XG paste, works perfect

                NeverDieN Offline
                NeverDieN Offline
                NeverDie
                Hero Member
                wrote on last edited by NeverDie
                #15

                @toyman said in SMD Reflow Oven / PID:

                Mechanic XG paste

                This? https://www.ebay.com/itm/New-Mechanic-XG-Z40-10cc-Syringe-Solder-Paste-Flux-Sn63-Pb37-25-45um-10cc-US/202242405146?hash=item2f1696331a:g:WsMAAOSwu4BV1Ds8:sc:USPSFirstClass!78726!US!-1

                T 1 Reply Last reply
                1
                • NeverDieN NeverDie

                  @toyman said in SMD Reflow Oven / PID:

                  Mechanic XG paste

                  This? https://www.ebay.com/itm/New-Mechanic-XG-Z40-10cc-Syringe-Solder-Paste-Flux-Sn63-Pb37-25-45um-10cc-US/202242405146?hash=item2f1696331a:g:WsMAAOSwu4BV1Ds8:sc:USPSFirstClass!78726!US!-1

                  T Offline
                  T Offline
                  Toyman
                  wrote on last edited by Toyman
                  #16

                  @neverdie yes, although I use the one in small cans and reload small amount into 1 ml syringe (with proper gauge needle!)

                  https://www.aliexpress.com/item/Original-Low-temperature-soldering-Paste-Flux-MECHANIC-B80-60g-Solder-tin-paste-Sn42-Bi58-For-Hakko/32878574326.html?spm=2114.search0204.3.1.51224cc6X3Qstz&s=p&ws_ab_test=searchweb0_0,searchweb201602_5_10152_10151_10065_10344_10068_5722815_10342_10343_10340_5722915_10341_10543_5722615_10696_10084_10083_10618_10307_10301_5722715_10059_100031_10103_10624_10623_10622_5722515_10621_10620,searchweb201603_55,ppcSwitch_5_ppcChannel&priceBeautifyAB=0

                  This bottle contains all the needles conviniently cut

                  https://www.aliexpress.com/item/50ml-Empty-E-liquid-Plastic-Rosin-Flux-Alcohol-Bottle-For-Dispenser-Rosin-Solder-Flux-Paste-11/32810052820.html?spm=2114.search0204.3.14.37687b2184NHbx&ws_ab_test=searchweb0_0,searchweb201602_5_10152_10151_10065_10344_10068_5722815_10342_10343_10340_5722915_10341_10543_5722615_10696_10084_10083_10618_10307_10301_5722715_10059_100031_10103_10624_10623_10622_5722515_10621_10620-10620,searchweb201603_55,ppcSwitch_5_ppcChannel&algo_expid=47557fe8-25e4-4763-96f0-5831fc4e628f-1&algo_pvid=47557fe8-25e4-4763-96f0-5831fc4e628f&priceBeautifyAB=0

                  NeverDieN 1 Reply Last reply
                  1
                  • T Toyman

                    @neverdie yes, although I use the one in small cans and reload small amount into 1 ml syringe (with proper gauge needle!)

                    https://www.aliexpress.com/item/Original-Low-temperature-soldering-Paste-Flux-MECHANIC-B80-60g-Solder-tin-paste-Sn42-Bi58-For-Hakko/32878574326.html?spm=2114.search0204.3.1.51224cc6X3Qstz&s=p&ws_ab_test=searchweb0_0,searchweb201602_5_10152_10151_10065_10344_10068_5722815_10342_10343_10340_5722915_10341_10543_5722615_10696_10084_10083_10618_10307_10301_5722715_10059_100031_10103_10624_10623_10622_5722515_10621_10620,searchweb201603_55,ppcSwitch_5_ppcChannel&priceBeautifyAB=0

                    This bottle contains all the needles conviniently cut

                    https://www.aliexpress.com/item/50ml-Empty-E-liquid-Plastic-Rosin-Flux-Alcohol-Bottle-For-Dispenser-Rosin-Solder-Flux-Paste-11/32810052820.html?spm=2114.search0204.3.14.37687b2184NHbx&ws_ab_test=searchweb0_0,searchweb201602_5_10152_10151_10065_10344_10068_5722815_10342_10343_10340_5722915_10341_10543_5722615_10696_10084_10083_10618_10307_10301_5722715_10059_100031_10103_10624_10623_10622_5722515_10621_10620-10620,searchweb201603_55,ppcSwitch_5_ppcChannel&algo_expid=47557fe8-25e4-4763-96f0-5831fc4e628f-1&algo_pvid=47557fe8-25e4-4763-96f0-5831fc4e628f&priceBeautifyAB=0

                    NeverDieN Offline
                    NeverDieN Offline
                    NeverDie
                    Hero Member
                    wrote on last edited by
                    #17

                    @toyman What about the syringes? Do you have a link for those as well?

                    I suppose a syringe gun might be handy, if no stepper motor operated one is available:
                    https://www.aliexpress.com/item/New-Arrival-Manual-Syringe-Gun-Dispenser-10cc-Glue-Dispensing-Gun/32555533165.html?spm=2114.search0604.8.44.58b37fcbKvXPej&priceBeautifyAB=0

                    T 1 Reply Last reply
                    0
                    • NeverDieN NeverDie

                      @toyman What about the syringes? Do you have a link for those as well?

                      I suppose a syringe gun might be handy, if no stepper motor operated one is available:
                      https://www.aliexpress.com/item/New-Arrival-Manual-Syringe-Gun-Dispenser-10cc-Glue-Dispensing-Gun/32555533165.html?spm=2114.search0604.8.44.58b37fcbKvXPej&priceBeautifyAB=0

                      T Offline
                      T Offline
                      Toyman
                      wrote on last edited by
                      #18

                      @neverdie c'mon, you don't need any special syringe. Ordinary BD will do
                      Regarding the motor operated one, I actually printed out a full set of 3d parts for the motor oerated syringe but never assembled as there is no need.
                      If I ever decide to automate the process, I'll make an air driven station with 2 valves. Mechanic solder syringes are supposed to be used with this type of dispensers.

                      1 Reply Last reply
                      0
                      • Nca78N Offline
                        Nca78N Offline
                        Nca78
                        Hardware Contributor
                        wrote on last edited by
                        #19

                        So I gave it a try today with a solder paste syringe from AliExpress (not perempted like the paste I got from my local shop before). I used a normal syringe pusher (after removing the rubber end) and it went relatively smoothly with a green colored needle (don't know the diameter). I guess I'll try the small syringe technique as it must be easier to have regular flow, but it was good enough.
                        Without much training I managed to solder my ESP32 module (and 2 buttons) to the adapter board. I used my small 10*10cm hotplate, remotely following the reflow profile for this solder type and all connections are good.

                        T NeverDieN 2 Replies Last reply
                        0
                        • Nca78N Nca78

                          So I gave it a try today with a solder paste syringe from AliExpress (not perempted like the paste I got from my local shop before). I used a normal syringe pusher (after removing the rubber end) and it went relatively smoothly with a green colored needle (don't know the diameter). I guess I'll try the small syringe technique as it must be easier to have regular flow, but it was good enough.
                          Without much training I managed to solder my ESP32 module (and 2 buttons) to the adapter board. I used my small 10*10cm hotplate, remotely following the reflow profile for this solder type and all connections are good.

                          T Offline
                          T Offline
                          Toyman
                          wrote on last edited by
                          #20

                          @nca78 said in SMD Reflow Oven / PID:

                          small 10*10cm hotplate

                          interesting. Do you use an ordinary kitchen hotplate?

                          Nca78N 1 Reply Last reply
                          0
                          • T Toyman

                            @nca78 said in SMD Reflow Oven / PID:

                            small 10*10cm hotplate

                            interesting. Do you use an ordinary kitchen hotplate?

                            Nca78N Offline
                            Nca78N Offline
                            Nca78
                            Hardware Contributor
                            wrote on last edited by
                            #21

                            @toyman said in SMD Reflow Oven / PID:

                            @nca78 said in SMD Reflow Oven / PID:

                            small 10*10cm hotplate

                            interesting. Do you use an ordinary kitchen hotplate?

                            No, it's made for SMD, it's the same than this one but another brand (and color, much better looking in white :D ). I was looking on AliExpress but saw a local shop was selling some. Cheaper than AliExpress and only 2$ for 48h delivery to my doorstep :)

                            It's much better than a kitchen hotplate as temperature is relatively accurate and doesn't seem to vary too much between centre and periphery thanks to the thickness of the metal plate. The only problem is at the end, it's extremely slow to cool down and it's easy to burn yourself on the unprotected plate. Body also gets pretty hot after some time so I need to put it on a silicon soldering mat to protect my desk.
                            Result of the first manual test is good enough, I'll test next week with stencil-applied solder paste if DHL is not messing too much with the customs.

                            https://www.aliexpress.com/item/JF-956S-Heating-Platform-Preheating-Station-Screen-Repair-Special-Heating-Units-220V-Mobile-maintenance-tools/32815514695.html

                            1 Reply Last reply
                            0
                            • Nca78N Nca78

                              So I gave it a try today with a solder paste syringe from AliExpress (not perempted like the paste I got from my local shop before). I used a normal syringe pusher (after removing the rubber end) and it went relatively smoothly with a green colored needle (don't know the diameter). I guess I'll try the small syringe technique as it must be easier to have regular flow, but it was good enough.
                              Without much training I managed to solder my ESP32 module (and 2 buttons) to the adapter board. I used my small 10*10cm hotplate, remotely following the reflow profile for this solder type and all connections are good.

                              NeverDieN Offline
                              NeverDieN Offline
                              NeverDie
                              Hero Member
                              wrote on last edited by
                              #22

                              @nca78 said in SMD Reflow Oven / PID:

                              remotely following the reflow profile for this solder type

                              To approximate the reflow profile, did you manually adjust the temperatures by hand while looking at a clock or something?

                              Nca78N 1 Reply Last reply
                              0
                              • NeverDieN NeverDie

                                @nca78 said in SMD Reflow Oven / PID:

                                remotely following the reflow profile for this solder type

                                To approximate the reflow profile, did you manually adjust the temperatures by hand while looking at a clock or something?

                                Nca78N Offline
                                Nca78N Offline
                                Nca78
                                Hardware Contributor
                                wrote on last edited by
                                #23

                                @neverdie said in SMD Reflow Oven / PID:

                                To approximate the reflow profile, did you manually adjust the temperatures by hand while looking at a clock or something?

                                Yes. That's why I say "remotely" :)
                                Not very convenient but still much faster than soldering all the pads by hand.

                                1 Reply Last reply
                                1
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                11

                                Online

                                11.7k

                                Users

                                11.2k

                                Topics

                                113.0k

                                Posts


                                Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                • Login

                                • Don't have an account? Register

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • MySensors
                                • OpenHardware.io
                                • Categories
                                • Recent
                                • Tags
                                • Popular