Rev 1543 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package dongfang.mkt.frames;
public class CompassHeadingResponseFrame
extends ResponseFrame
{
int[] angle=
new int[2];
int[] user =
new int[2];
int calcState
;
int orientation
;
public CompassHeadingResponseFrame
(int address
) {
super(address
);
}
@
Override
public boolean isResponseTo
(RequestFrame r
) {
return r
instanceof CompassHeadingRequestFrame
;
}
}