RobotKit API
|
00001 // 00002 // RKBackLEDOutputCommand.h 00003 // RobotKit 00004 // 00005 // Created by Brian Smith on 6/20/11. 00006 // Copyright 2011 Orbotix Inc. All rights reserved. 00007 // 00008 00011 #import <Foundation/Foundation.h> 00012 #import <RobotKit/RKDeviceCommand.h> 00013 00024 @interface RKBackLEDOutputCommand : RKDeviceCommand { 00025 @private 00026 float brightness; 00027 } 00028 00030 @property (nonatomic, readonly) float brightness; 00031 00036 + (void)sendCommandWithBrightness:(float)brightness; 00037 00043 - (id)initWithBrightness:(float)brightness; 00044 00045 @end