- Timestamp:
- 12/23/12 19:15:27 (10 years ago)
- Branches:
- master, RawEEG, Raw_EEG_Plot, Servo, Tab_Interface, pyramid
- Children:
- 2aabdf3
- Parents:
- c21b58a
- Location:
- iOS/Orbit
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
iOS/Orbit/Orbit.xcodeproj/project.pbxproj
rb3458d9 reac712d 28 28 28C10EEC16875BC100ECFD59 /* throttle_hover_ios.wav in Resources */ = {isa = PBXBuildFile; fileRef = 28C10EEB16875BC100ECFD59 /* throttle_hover_ios.wav */; }; 29 29 28C10EEF16875C9200ECFD59 /* iOS_noflip.wav in Resources */ = {isa = PBXBuildFile; fileRef = 28C10EEE16875C9200ECFD59 /* iOS_noflip.wav */; }; 30 28C10EF1168760CA00ECFD59 /* HOW_TO_USE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 28C10EF0168760CA00ECFD59 /* HOW_TO_USE.txt */; }; 30 31 /* End PBXBuildFile section */ 31 32 … … 58 59 28C10EEB16875BC100ECFD59 /* throttle_hover_ios.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = throttle_hover_ios.wav; sourceTree = "<group>"; }; 59 60 28C10EEE16875C9200ECFD59 /* iOS_noflip.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = iOS_noflip.wav; sourceTree = "<group>"; }; 61 28C10EF0168760CA00ECFD59 /* HOW_TO_USE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HOW_TO_USE.txt; sourceTree = "<group>"; }; 60 62 /* End PBXFileReference section */ 61 63 … … 92 94 isa = PBXGroup; 93 95 children = ( 96 28C10EF0168760CA00ECFD59 /* HOW_TO_USE.txt */, 94 97 282F2B351681D10200B9A99A /* ic_launcher-114x114.png */, 95 98 282F2B321681D0FC00B9A99A /* ic_launcher-57x57.png */, … … 212 215 28C10EEC16875BC100ECFD59 /* throttle_hover_ios.wav in Resources */, 213 216 28C10EEF16875C9200ECFD59 /* iOS_noflip.wav in Resources */, 217 28C10EF1168760CA00ECFD59 /* HOW_TO_USE.txt in Resources */, 214 218 ); 215 219 runOnlyForDeploymentPostprocessing = 0; -
iOS/Orbit/Orbit/ViewController.m
rb3458d9 reac712d 12 12 #define LOGGING true // set to false to stop each received signal being logged 13 13 14 #define AUDIO_FILE_NAME @" iOS_noflip.wav" //@"throttle_hover_ios.wav"14 #define AUDIO_FILE_NAME @"throttle_hover_ios.wav" // @"iOS_noflip.wav" // 15 15 #define POOR_SIGNAL_KEY @"poorSignal" 16 16 #define ATTENTION_KEY @"eSenseAttention" … … 142 142 // Reset the outputs back to zero 143 143 - (void)accessoryDidDisconnect { 144 [self logMessage:@"A n accessory was disconnected."];144 [self logMessage:@"Accessory was disconnected."]; 145 145 [self resetOutputToZero]; 146 146 } … … 238 238 { 239 239 demoRunning = NO; 240 [self resetOutputToZero]; 240 241 [demoButton setTitle:@"Demo" forState:UIControlStateNormal]; 241 242 if (audioPlayer != NULL && [audioPlayer isPlaying]) {
Note: See TracChangeset
for help on using the changeset viewer.