ServoTab_Interfacepyramid
Last change
on this file since ad40faa was
ad40faa,
checked in by Steve Castellotti <sc@…>, 9 years ago
|
Orbit:
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | #import <Foundation/Foundation.h> |
---|
10 | |
---|
11 | #import <AVFoundation/AVFoundation.h> |
---|
12 | #import "TGAccessoryManager.h" |
---|
13 | #import "TGAccessoryDelegate.h" |
---|
14 | #import "SignalConverterDelegate.h" |
---|
15 | #import "AudioGenerator.h" |
---|
16 | |
---|
17 | @interface SignalConverter : NSObject <TGAccessoryDelegate> { |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | AVAudioPlayer *audioPlayer; |
---|
22 | } |
---|
23 | |
---|
24 | @property (weak) id <SignalConverterDelegate> delegate; |
---|
25 | @property (nonatomic) float attentionThreshold; |
---|
26 | @property (nonatomic) float meditationThreshold; |
---|
27 | @property (nonatomic) BOOL running; |
---|
28 | @property (nonatomic) BOOL testing; |
---|
29 | |
---|
30 | |
---|
31 | - (void) setValuesForAttention:(float) attention meditation:(float) meditation; |
---|
32 | - (BOOL) startProcessing; |
---|
33 | - (void) stopProcessing; |
---|
34 | - (void) appStopped; |
---|
35 | - (BOOL) isBluetoothReady; |
---|
36 | - (BOOL) isVolumeMax; |
---|
37 | - (BOOL) isAudioJackPlugged; |
---|
38 | - (void) setYaw:(int)y throttle:(int)t pitch:(int)p; |
---|
39 | - (void) playTestSound; |
---|
40 | - (void) stopTestSound; |
---|
41 | - (void) prepareAudio; |
---|
42 | |
---|
43 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.