
Access Solutions
4536 Edison Ave.
Sacramento, Ca. 95821
E-mail: support@axsol.com
Web: www.axsol.com
Phone: (916) 481-3559

It is strongly recommended that you review the "commands.txt" file
before atempting to communicate with the TripleTalk USB via your
own software application.

All that is needed to add speech functionality to your application
is to include the "ttusbd.h" file in your project.
Use the exported functions described in "ttusbd.h" to send
text and retreive index marks to and from the synth respectively.
When sending command sequences to the TripleTalk, it is recommended
that you follow the command sequence with a Nul character. The following
example will set the volume level to 5.

WriteByte(1);
WriteByte(0x35);
WriteByte('v');
WriteByte('\0');

It is important to note that the ttusbd.h file is a header file for
the ttusbd.dll file.  The exported functions described in ttusbd.h are
for communicating with the TripleTalk USB via the USB port.
If you wish to communicate with the TripleTalk USB using its RS232 
serial port, set your serial port up with the following parameters:
  
  Baud = 9600
  Parity = None
  Data Bits = 8
  Stop Bits = 1
  Flow Control = Rts/Cts


 
