forked from kennytm/iphone-private-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSBBluetoothController.h
37 lines (33 loc) · 979 Bytes
/
SBBluetoothController.h
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
32
33
34
35
36
/**
* This header is generated by class-dump-z 0.2-1.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <Foundation/NSObject.h>
@class NSMutableArray;
@interface SBBluetoothController : NSObject {
NSMutableArray* _devices;
}
+(id)sharedInstance;
// inherited: -(void)dealloc;
-(id)firstBTDeviceToReportBatteryLevel;
-(BOOL)canReportBatteryLevel;
-(float)batteryLevel;
-(void)noteDevicesChanged;
-(void)startWatchingForDevices;
-(void)stopWatchingForDevices;
-(void)iapDeviceChanged:(id)changed;
-(void)addDeviceNotification:(id)notification;
-(void)removeDeviceNotification:(id)notification;
-(void)connectionChanged:(id)changed;
-(void)batteryChanged:(id)changed;
-(void)updateBattery;
-(void)avrcpPerformToggle:(id)toggle;
-(void)avrcpPerformPlay:(id)play;
-(void)avrcpPerformPause:(id)pause;
-(void)avrcpPerformStop:(id)stop;
-(void)avrcpPlay:(id)play;
-(void)avrcpPause:(id)pause;
-(void)avrcpStop:(id)stop;
@end