Scrolling thermo


Results 1 to 40 of 56

Threaded View

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


    Did you find this post helpful? Yes | No

    Default Re: Scrolling thermo

    Bug of setting hours (23-->0) solved :
    Code:
                    '    Decrement Units Hours
                    '    ---------------
            If CounterC=1 then
                if setdechour=2 then
                  IF SetHour=0 THEN
                     SetHour= 3
                     else    
                     SetHour=SetHour-1
                  Endif
                else
                  if sethour=0 then
                    sethour=9
                    else
                    sethour=sethour-1
                  endif            
                endif
            endif
    and
    Code:
                    '    Increment Units Hours
                    '    ---------------
            If CounterC=1 then
                if SetDecHour=2  then
                    if SetHour=3 then
                        SetHour=0
                    else
                        SetHour=SetHour+1
                    endif
                 else
                    if SetHour=9 then
                       SetHour=0
                    else
                       SetHour=SetHour+1
                    endif         
                Endif    
           endif
    This is it ! Best regards !
    Last edited by fratello; - 21st October 2011 at 19:57.

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