-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASPowerLincController.h
More file actions
31 lines (23 loc) · 900 Bytes
/
Copy pathASPowerLincController.h
File metadata and controls
31 lines (23 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// ASPowerLincController.h
// Shion Framework
//
// Created by Chris Karr on 2/20/10.
// Copyright 2010 Audacious Software. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "ASX10Controller.h"
@interface ASPowerLincController : ASX10Controller
{
NSMutableSet * infoDevices;
unsigned char lastSubcommand;
}
- (void) processStandardInsteonMessage:(NSData *) message;
- (void) processExtendedInsteonMessage:(NSData *) message;
- (ASDevice *) deviceWithAddress:(NSData *) addressBytes;
- (NSData *) insteonDataForDevice: (ASDevice *)device command:(ASCommand *) command value:(NSObject *) value;
- (NSData *) insteonDataForDevice: (ASDevice *)device command:(ASCommand *) command;
- (ASCommand *) commandForDevice:(ASDevice *) device kind:(unsigned int) commandKind;
- (void) setControllerVersion:(NSNumber *) version;
- (void) setControllerAddress:(NSData *) addressData;
@end