It happens NOTHING with this code.Code:start:
input porta.3
low portc.0
If porta.3 = 1 then led ' when switch is pressed it goes to label "led" right?
goto start
led:
high portc.0 'here should the led light up?
pause 100
goto start
end
If i change the value to "If porta.3 = 0 then led" the led always lights up except when switch is pressed down.
Any suggestions?