Rev 1543 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1542 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | public class CompassHeadingResponseFrame extends ResponseFrame { |
||
1562 | - | 4 | int[] angle= new int[2]; |
5 | int[] user = new int[2]; |
||
6 | int calcState; |
||
7 | int orientation; |
||
8 | |||
1542 | - | 9 | public CompassHeadingResponseFrame(int address) { |
10 | super(address); |
||
11 | } |
||
12 | |||
13 | @Override |
||
14 | public boolean isResponseTo(RequestFrame r) { |
||
1562 | - | 15 | return r instanceof CompassHeadingRequestFrame; |
1542 | - | 16 | } |
17 | } |