ServoTab_Interfacepyramid
Last change
on this file since 548a60f was
8a0f920f,
checked in by Jonathon Horsman <jonathon@…>, 9 years ago
|
Set thresholds when first loaded
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | #import <UIKit/UIKit.h> |
---|
10 | #import <AVFoundation/AVFoundation.h> |
---|
11 | #import "../SignalConverterDelegate.h" |
---|
12 | |
---|
13 | @interface FlightViewController : UIViewController <SignalConverterDelegate> { |
---|
14 | AVAudioPlayer *audioPlayer; |
---|
15 | } |
---|
16 | |
---|
17 | @property (nonatomic, retain) IBOutlet UIProgressView *attention; |
---|
18 | @property (nonatomic, retain) IBOutlet UILabel *attentionPercent; |
---|
19 | @property (nonatomic, retain) IBOutlet UIProgressView *meditation; |
---|
20 | @property (nonatomic, retain) IBOutlet UILabel *meditationPercent; |
---|
21 | @property (nonatomic, retain) IBOutlet UIProgressView *signal; |
---|
22 | @property (nonatomic, retain) IBOutlet UILabel *signalPercent; |
---|
23 | @property (nonatomic, retain) IBOutlet UIProgressView *power; |
---|
24 | @property (nonatomic, retain) IBOutlet UILabel *powerPercent; |
---|
25 | @property (nonatomic, retain) IBOutlet UISlider *attentionThreshold; |
---|
26 | @property (nonatomic, retain) IBOutlet UISlider *meditationThreshold; |
---|
27 | @property (nonatomic, retain) IBOutlet UIBarButtonItem *connectButton; |
---|
28 | @property (nonatomic, retain) IBOutlet UIBarButtonItem *testButton; |
---|
29 | @property (nonatomic, retain) IBOutlet UIImageView *statusImage; |
---|
30 | |
---|
31 | - (IBAction) connectButtonPressed:(id) sender; |
---|
32 | - (IBAction) testButtonPressed:(id) sender; |
---|
33 | |
---|
34 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.