Changes between Version 31 and Version 32 of ARMS22-SOFTMODEM-HOWTO
- Timestamp:
- Mar 18, 2011 11:33:30 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ARMS22-SOFTMODEM-HOWTO
v31 v32 103 103 !SoftModemTerminal is a simple terminal application for iPhone. With the sample sketch, Arduino sends and receives alphanumeric. Please note that big sound will come from speakers if nothing is put into the iPhone's audio jack. 104 104 105 <strike>Currently, !SoftModemTerminal is not distributed in !AppStore. Download the source code, please use your own build.</strike> 105 ~~Currently, !SoftModemTerminal is not distributed in !AppStore. Download the source code, please use your own build.~~ 106 106 107 107 !SoftModemTerminal is able to be build with Xcode and iPhone SDK. Xcode is included in the MacOSX installation DVD. Also available for download at Apple's developer pages. … … 142 142 * AVFoundation.framework[[BR]] 143 143 144 '''Initialization''' 144 === Initialization === 145 145 146 146 First, set the category of application with AVAudioSession class. To do voice recording and playback, AVAudioSessionCategoryPlayAndRecord need to be set. … … 172 172 }}} 173 173 174 '''Receiving''' 174 === Receiving === 175 175 176 176 Register the class that implements the CharReceiver protocol to the FSKRecognizer class. … … 199 199 }}} 200 200 201 '''Sending''' 201 === Sending === 202 202 203 203 Sending data is much easier than receiving data. FSKSerialGenerator class's writeByte: method to sends a single byte.