ServoTab_Interfacepyramid
Last change
on this file since 8a0f920f 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
|
Rev | Line | |
---|
[ab9d63b] | 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; |
---|
[de10cbc] | 28 | @property (nonatomic, retain) IBOutlet UIBarButtonItem *testButton; |
---|
[ab9d63b] | 29 | @property (nonatomic, retain) IBOutlet UIImageView *statusImage; |
---|
| 30 | |
---|
| 31 | - (IBAction) connectButtonPressed:(id) sender; |
---|
[de10cbc] | 32 | - (IBAction) testButtonPressed:(id) sender; |
---|
[ab9d63b] | 33 | |
---|
| 34 | @end |
---|
Note: See
TracBrowser
for help on using the repository browser.