your degree calc is incorrect

Code:
degr = brads*360/256
this will overflow a word var causing errors

Code:
degr = brads */ 360
is the better way