View single post by slychiu
 Posted: Friday Dec 14th, 2018 04:34 am
 PM  Quote  Reply  Full Topic 
slychiu



Joined: Saturday Apr 29th, 2006
Location: Singapore
Posts: 5498
Status: 
Offline

  back to top

Your problem  is that your actions are wrong
73,3, 142,10,19, 143,7,6, 193, 74,5, 74,116, 74,6, 255means


If Hours < 19 Then
    If Hours >= 6 Then
        Exit Response
        Do Output3ON
        Do Reminder8OnKeypa
        Do Output3OFF
    End If
End If
Exit response ends the response so the following actions have no effect

If what you want is
If Hours < 19 Then
    If Hours >= 6 Then
        Do Output3ON
        Do Reminder8OnKeypa
        Wait 1 Seconds Using Timer01
        Do Output3OFF
    End If
End If
The actions are73,3, 142,13,19, 143,10,6, 74,5, 74,116, 190,1,0,1, 74,6, 255



The 2nd set of actions73, 3, 69, 19, 70, 6, 193, 74, 5, 190, 0, 10, 74, 116, 74, 6, 255
Is also wrong

action 190 should be190, timer#, timerhi, timerloyou may have wanted 190,1,0,10, NOT 190,0,10
That is the problem with trying to write raw action codes. you need to have a good knowledge of the actions
These errors would not have happened using Comfigurator

Last edited on Friday Dec 14th, 2018 04:41 am by slychiu

 Close Window