Soldering station


Closed Thread
Results 1 to 38 of 38

Hybrid View

  1. #1
    Join Date
    Aug 2010
    Location
    Maryland, USA
    Posts
    869


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    I'm sure there is something I am missing here but,
    Still have BIG thermal inertia of iron soldering (about 7-8 degree)...
    Do you think you can do better then this? Or need to? Now if its an excersize in learning and just the fun of doing it, well thats a great reason. But I would think the tip temp will cool that much if you just blow on the tip. but to raise it will take full power for a few seconds to get it back, then it will overshoot. Just my HO.
    -Bert

    The glass is not half full or half empty, Its twice as big as needed for the job!

    http://foamcasualty.com/ - Warbird R/C scratch building with foam!

  2. #2
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Quote Originally Posted by cncmachineguy View Post
    I'm sure there is something I am missing here but,


    Do you think you can do better then this? Or need to? Now if its an exercise in learning and just the fun of doing it, well that's a great reason. But I would think the tip temp will cool that much if you just blow on the tip. but to raise it will take full power for a few seconds to get it back, then it will overshoot. Just my HO.
    Just so we are all playing on the same field . . . are we talking degrees C or degrees F ? I am guessing Centigrade so that's more like 13 or 14 Fahrenheit.
    Check out Robert's article:
    http://itech.fgcu.edu/faculty/zalews...PIDcontrol.pdf
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  3. #3
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Sure enough, it's not Kelvin... just sayin
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  4. #4
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Quote Originally Posted by mister_e View Post
    Sure enough, it's not Kelvin... just sayin
    Hey! He (Kelvin) used to work for me . . .
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  5. #5
    Join Date
    Nov 2005
    Location
    Bombay, India
    Posts
    969


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    I can hazard a guess that changing this section of code
    Code:
         vt=adval * 500      
                vt=div32 1023 
                grup=vt+grup  
                PAUSE 10
    to this
    vt=adval >> 1
    grup=vt+grup
    PAUSE 10
    might save you a bit of code & ram space. But, I've not checked this, so, you'll beware. Again, if you notice,
    I've used an approximation of divide by 2(500/1000) for 500/1023 instead of 1/2.046 I do not think it will matter much if you calibrate
    the readings.

  6. #6
    Join Date
    Dec 2008
    Location
    Ploiesti, ROMANIA
    Posts
    582


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Wow ! Great support here ! Thanks to all !!!
    In first post You can see : the temperature it's in Celsius degrees. The PID control it's a verry good ideea; sure I will use in future projects !
    But...I try to do like Mr. Ioannis :
    Code:
    if w1 < (calibra - 5) then pwm mosfet 255, 300
    if w1 < (calibra - 3) then pwm mosfet 155, 250
    if w1 < (calibra - 1) then pwm mosfet 100, 200
    endif
    endif
    endif
    I think to reduce the "power" of heating by adjusting the pwm factors... It's OK ?!
    Last edited by fratello; - 14th July 2011 at 06:26.

  7. #7
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,170


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    1. On the above code you do not need the 3 endif.

    2. The credit is not for me. Maybe Jerson's?

    Ioannis

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts