Try this code insted
If you read the PBP Manual you will see that the PWM command after execution turn the pin input.Code:STARTMAIN: if button=0 then For Duty=0 to 255 PWM LED4,Duty,Cycle Next high led4 pause 1000 For Duty=255 to 0 Step -1 PWM LED4,Duty,Cycle Next endif low led4 GOTO STARTMAIN
Bookmarks