basically it's what you want: the command looks like
6E PQ RS (where P,Q,R and S are 4-bit numbers, i.e., nibbles)
I suppose, you can ignore S for the moment -- it specifies the fractionals
of one degree:
0001 1/16 of a degree
0010 1/8 of a degree
0100 1/4 of a degree
1000 1/2 of a degree
and so forth, i.e.
1110 1/2 + 1/4 + 1/8 = 7/8 of a degree
R is a number of degrees (i.e. between 0 and 15)
Q is a multiple of 16 degrees (i.e. between 0*16 and 15*16)
P can be one of 0 (exact north), 1 (+256 degrees) and F (-256 degrees)
BTW: + means "east" and
- means "west"
so if you want to have a position of, say, 11 degrees east, just use
6E 00 B0 (i.e. north + 0*16 + 11 + 0 = +11 degrees)