Soldering station


Closed Thread
Results 1 to 38 of 38

Hybrid View

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


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Thank You so much ! I try and I post the results.

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


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    I cannot run my simulation ( AMD Athlon64 X2 DualCore 4200+, 2 GB RAM ?!) ...
    It's this code OK ? Thanks !
    Code:
    hyst            CON  2
    check:
    if mode >= 1 then
        if w1 < calibra-hyst     then pwm mosfet, 255, 300
        if w1 > calibra+hyst     then low mosfet
        if w1 = calibra+hyst-w1 then pwm mosfet,(w1*255)/(2*hyst), 300
    endif
    return

  3. #3
    Join Date
    Nov 2005
    Location
    Bombay, India
    Posts
    967


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Looks good to me except I would make the first line this
    if w1 < calibra-hyst then high mosfet

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


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Because of "structure" of my code (see memo subroutine) , this procedure don't work ... I don't have anymore acces to "memory"... I must try a different way, but I have such little space.

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


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    A new, working fine too, version...
    Code:
    if buton = 0 then 
    mode = mode + 1
    gosub memo
    endif
    
    
    gosub check
    Pause 100                
    Goto Main
    and
    Code:
    memo:
    
    if mode = 1 then
     gosub poz
     char = 17
     call    PrintChar
    endif
    
    if mode = 2 then  
     gosub poz
     char = 15
     call    PrintChar
     calibra = vt
    endif
    
    if mode = 3 then 
     gosub poz
     char = 18
     call printchar
    endif
    
    if mode > 3 then 
      mode = 0
     gosub poz
     char = 16
     call printchar
    endif
    
    return
    '===============================================================================
    check:
    SELECT CASE  MODE
    CASE 1
    PWM MOSFET, 255, 300
    CASE 2
        if w1 < (calibra-1) then 
              pwm mosfet, 155, 200      
                 else
            low mosfet 
        endif
    CASE 3
    LOW MOSFET
    END SELECT
    Still have BIG thermal inertia of iron soldering (about 7-8 degree)...

  6. #6
    Join Date
    Jan 2011
    Location
    Skopje,Macedonia
    Posts
    71


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    where do you buy Nokia 3310 LCD displays?Can you put a link to the store?Thanks
    Do you use Solomon SL-10 soldering iron?

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


    Did you find this post helpful? Yes | No

    Default Re: Soldering station

    Yes, I use Pensol SL10. The display it's from " people sell everything don't need anymore " ... about 1 euro.

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