RobotKit API
|
#import <Foundation/Foundation.h>
#import <ExternalAccessory/ExternalAccessory.h>
Go to the source code of this file.
Classes | |
class | RKRobotProvider |
Objects of this class maintain a connection to a robot. More... | |
Variables | |
NSString *const | RKRobotKey |
NSString *const | RKRobotControlKey |
NSString *const | RKRobotIsAvailableNotification |
NSString *const | RKRobotIsNoLongerAvailableNotification |
NSString *const | RKRobotDidGainControlNotification |
NSString *const | RKRobotDidLossControlNotification |
NSString *const | RKRobotWillGoToSleepNotification |
NSString* const RKRobotControlKey |
Key used to get the RKRobotControl object notifications' userInfo dictionaries.
NSString* const RKRobotDidGainControlNotification |
Notification string posted when a robot is becomes under control. The userInfo dictionary contains the RKRobotControl object, which is accessed using the RKRobotControlKey.
NSString* const RKRobotDidLossControlNotification |
Notification string posted when a robot has lost control.
NSString* const RKRobotIsAvailableNotification |
Notification string posted when a robot becomes available. The userInfo dictionary contains the RKRobot object that is available which is accessed with the RKRobotKey.
NSString* const RKRobotIsNoLongerAvailableNotification |
Notification string posted when a robot is no longer available. The userInfo dictionary contains the RKRobot object for the robot that has gone away. This value is accessed using the RKRobotKey.
NSString* const RKRobotKey |
Key used to get the RKRobot object from notifications' userInfo dictionaries.
NSString* const RKRobotWillGoToSleepNotification |
Notification string which is used post an NSNotification when a Robot is about to go to sleep. The userInfo dictionary contains the RKRobot object that is going to sleeep.