Jay.slovak
Active Member
I wouldn't consider 18F (Aka High-End ) :lol: to be difficult. I consider them easyer to program then 16F...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Jay.slovak said:I wouldn't consider 18F (Aka High-End ) :lol: to be difficult. I consider them easyer to program then 16F...
I totally agree. 16F are ideal for beginners.Nigel Goodwin said:But I would advise initially learning the 16 series PIC's, as there are less instructions to learn - it makes it less daunting.
GTAman said:Do you think the book
Programming & Customizing PICmicro Microcontrollers
by Myke Predko
I took a look at it and it seemed interesting but I want your opinion.
TX CODE:
symbol trisb = 134
symbol trisa = 133
symbol portb = 6
symbol porta = 5
low 1
input 0
input 2
start:
pot 0,50,B0
pot 2,50,B1
B0 = B0 * 5
B1 = B1 * 5
y:
if B0 < 100 then yf
if B0 > 150 then yb
x:
if B1 < 100 then xr
if B1 > 150 then xl
serout 1,n9600,(5)
goto start
yf:
serout 1,n9600,(2)
goto start
yb:
serout 1,n9600,(1)
goto start
xl:
serout 1,n9600,(3)
goto start
xr:
serout 1,n9600,(4)
goto start
end