Changes between Version 31 and Version 32 of ARMS22-SOFTMODEM-HOWTO


Ignore:
Timestamp:
Mar 18, 2011 11:33:30 AM (13 years ago)
Author:
Ken Suzuki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ARMS22-SOFTMODEM-HOWTO

    v31 v32  
    103103!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.
    104104
    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.~~
    106106
    107107!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.
     
    142142* AVFoundation.framework[[BR]]
    143143
    144 '''Initialization'''
     144=== Initialization ===
    145145
    146146First, set the category of application with AVAudioSession class. To do voice recording and playback, AVAudioSessionCategoryPlayAndRecord need to be set.
     
    172172}}}
    173173
    174 '''Receiving'''
     174=== Receiving ===
    175175
    176176Register the class that implements the CharReceiver protocol to the FSKRecognizer class.
     
    199199}}}
    200200
    201 '''Sending'''
     201=== Sending ===
    202202
    203203Sending data is much easier than receiving data. FSKSerialGenerator class's writeByte: method to sends a single byte.