RobotKit API
|
00001 // 00002 // RKCalibrateCommand.h 00003 // RobotKit 00004 // 00005 // Created by Brian Smith on 6/15/11. 00006 // Copyright 2011 Orbotix Inc. All rights reserved. 00007 // 00008 00011 #import <Foundation/Foundation.h> 00012 #import <Robotkit/RKDeviceCommand.h> 00013 00025 @interface RKCalibrateCommand : RKDeviceCommand { 00026 @private 00027 float heading; 00028 } 00029 00034 @property (nonatomic, readonly) float heading; 00035 00041 + (void)sendCommandWithHeading:(float)heading; 00048 - (id)initWithHeading:(float)heading; 00049 00050 @end