Quote Originally Posted by sayzer View Post
I see an analog port issue going around.

It happens to all of us, or does it?


Also, where do you turn OFF the LEDs?

Once you set them HIGH, when will they get set LOW?


------------------------------
new var byte
led1 var PORTA.2
led2 var PORTA.3

adcon.1 = 7

main:
new = 0
serout porta.0, T9600, ["Enter which LED to light (1-2,0=Off): ", 10, 13]
serin porta.1, T9600, new
serout porta.0, T9600, ["LED Chosen: ", new, 10, 13]
if new = "1" then
high led1 : low led2
enfif
if new = "2" then
high led2 : low led1
endif
if new = "0" then
low led1 : low led2
endif

goto main