Obviously using C makes programming SO MUCH EASIER :lol: :lol: :lol:
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.
I agree with that. I can do C, but it is much more easier to do Assembly when it comes to PICs. It is pretty hard to some low level stuff with C (and that's what PICs are all about)...Nigel Goodwin said:Obviously using C makes programming SO MUCH EASIER :lol: :lol: :lol:
Nigel Goodwin said:Obviously using C makes programming SO MUCH EASIER :lol: :lol: :lol:
bsodmike said:Let's suppose I'm being sent 111011101(-35 as a 9-bit 2's comp)
--Mike
b5=distance/10000;
temp=distance%10000;
b4=temp/1000;
temp2=temp%1000;
b3=temp2/100;
temp=temp2%100;
b2=temp/10;
b1=temp%10;