screenshot.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html>
  3. <head>
  4. <meta name="GENERATOR" content="Visual Page 1.0 for Windows">
  5. <meta http-equiv="Content-Type" content="text/html;CHARSET=iso-8859-1">
  6. <title>TI-83 Link Protocol Guide - Screenshots</title>
  7. </head>
  8. <body bgcolor="#ffffe8">
  9. <p><b>TI-83 Link Protocol Guide</b> - Screenshots</p>
  10. <center>
  11. <h2>
  12. <hr align="center">Screenshots</h2>
  13. </center>
  14. <p>The TI-83's screenshot ability is "silent," which means that the
  15. calculator does not need to be put
  16. in a special mode. Screenshots can be taken any time the calculator is
  17. ready to accept a keypress.</p>
  18. <p>The protocol used for getting a screenshot is shown below. For
  19. information on packet formats, <a href="packet.html">click
  20. here</a>.</p>
  21. <p>
  22. <table bgcolor="#ffffff" border="1" cellspacing="0" width="92%">
  23. <tbody>
  24. <tr>
  25. <th bgcolor="#008800" width="7%"><font color="#ffffff">Step</font></th>
  26. <th colspan="3" bgcolor="#008800"><font color="#ffffff">Direction</font></th>
  27. <th bgcolor="#008800" width="80%"><font color="#ffffff">Packet</font></th>
  28. </tr>
  29. <tr>
  30. <td bgcolor="#ffffff" width="7%">
  31. <p align="center">1 </p>
  32. </td>
  33. <td rowspan="4">
  34. <p align="center"><img src="graphics/comp.gif" alt="Computer"
  35. align="bottom" border="0" height="33" width="30"> </p>
  36. </td>
  37. <td bgcolor="#ffffff">
  38. <p align="center"><img src="graphics/right.gif" alt="===&gt;"
  39. align="bottom" border="0" height="13" width="22"> </p>
  40. </td>
  41. <td rowspan="4" bgcolor="#ffffff">
  42. <p align="center"><img src="graphics/calc.gif" alt="Calculator"
  43. align="bottom" border="0" height="67" width="30"> </p>
  44. </td>
  45. <td bgcolor="#ffffff" width="80%">SCR</td>
  46. </tr>
  47. <tr>
  48. <td bgcolor="#ffffff" width="7%">
  49. <p align="center">2 </p>
  50. </td>
  51. <td bgcolor="#ffffff">
  52. <p align="center"><img src="graphics/left.gif" alt="&lt;==="
  53. align="bottom" border="0" height="13" width="22"> </p>
  54. </td>
  55. <td bgcolor="#ffffff" width="80%">ACK</td>
  56. </tr>
  57. <tr>
  58. <td bgcolor="#ffffff" width="7%">
  59. <p align="center">3 </p>
  60. </td>
  61. <td bgcolor="#ffffff">
  62. <p align="center"><img src="graphics/left.gif" alt="&lt;==="
  63. align="bottom" border="0" height="13" width="22"> </p>
  64. </td>
  65. <td bgcolor="#ffffff" width="80%">DATA - Format described below.</td>
  66. </tr>
  67. <tr>
  68. <td bgcolor="#ffffff" width="7%">
  69. <p align="center">4 </p>
  70. </td>
  71. <td bgcolor="#ffffff">
  72. <p align="center"><img src="graphics/right.gif" alt="===&gt;"
  73. align="bottom" border="0" height="13" width="22"> </p>
  74. </td>
  75. <td bgcolor="#ffffff" width="80%">ACK</td>
  76. </tr>
  77. </tbody>
  78. </table>
  79. </p>
  80. <p>The data packet contains a 768-byte monochrome bitmap (1 bit per
  81. pixel). Each bit has a value of 1 if the corresponding
  82. pixel is dark or a value of 0 if the corresponding pixel is light.</p>
  83. <p>The pixel order is left-to-right, then top-to-bottom (See figure
  84. below).<br>
  85. Byte 0 defines the first 8 pixels in the left side of the top row of
  86. the screen. Bytes 1-11 define the rest of
  87. the first row, bytes 12-23 define the second row, etc.</p>
  88. <p><u>Example:</u><br>
  89. <table border="0" cellspacing="0" width="100%">
  90. <tbody>
  91. <tr>
  92. <td bgcolor="#ccffcc">PC:</td>
  93. <td bgcolor="#ccffcc" width="50%"><b><tt>03&nbsp;6D&nbsp;00&nbsp;00</tt></b></td>
  94. <td bgcolor="#ccffcc" width="50%"><i>Screenshot request</i></td>
  95. </tr>
  96. <tr>
  97. <td bgcolor="#ffcccc">TI:</td>
  98. <td bgcolor="#ffcccc" width="50%"><b><tt>83&nbsp;56&nbsp;00&nbsp;00</tt></b></td>
  99. <td bgcolor="#ffcccc" width="50%"><i>Acknowledgement of request</i></td>
  100. </tr>
  101. <tr>
  102. <td bgcolor="#ffcccc">&nbsp;</td>
  103. <td bgcolor="#ffcccc" width="50%"><b><tt>83&nbsp;15&nbsp;00&nbsp;03&nbsp;</tt></b>&lt;768&nbsp;bytes&nbsp;plus&nbsp;2&nbsp;byte&nbsp;checksum&gt;</td>
  104. <td bgcolor="#ffcccc" width="50%"><i>Screen data</i></td>
  105. </tr>
  106. <tr>
  107. <td bgcolor="#ccffcc">PC:</td>
  108. <td bgcolor="#ccffcc" width="50%"><b><tt>03&nbsp;56&nbsp;00&nbsp;00</tt></b></td>
  109. <td bgcolor="#ccffcc" width="50%"><i>Acknowledgement of data</i></td>
  110. </tr>
  111. </tbody>
  112. </table>
  113. </p>
  114. <p>The following figure demonstrates byte ordering of the pixels if the
  115. bitmap is in a 768-element array data[]:</p>
  116. <p><img src="graphics/scrnshot.gif" alt="[pixel grid diagram]"
  117. align="bottom" border="0" height="274" width="336"></p>
  118. <p>Note that this format is different from the standard Windows bitmap
  119. format, which specifies a value of 1 if
  120. the pixel is light and bottom-to-top row order.</p>
  121. <p>
  122. <table border="0" cellspacing="0" width="100%">
  123. <tbody>
  124. <tr>
  125. <td width="32%">
  126. <p align="center"><a href="packet.html"><img
  127. src="graphics/prevpage.gif" alt="[previous page]" align="bottom"
  128. border="2" height="32" width="32"><br>
  129. Packet Formats</a> </p>
  130. </td>
  131. <td width="34%">
  132. <p align="center"><a href="index.html"><img
  133. src="graphics/home.gif" alt="[home]" align="bottom" border="2"
  134. height="32" width="32"><br>
  135. Table of Contents</a> </p>
  136. </td>
  137. <td width="34%">
  138. <p align="center"><a href="manual.html"><img
  139. src="graphics/nextpage.gif" alt="[next page]" align="bottom" border="2"
  140. height="32" width="32"><br>
  141. Manual Transfers</a> </p>
  142. </td>
  143. </tr>
  144. </tbody>
  145. </table>
  146. </p>
  147. <hr align="center"><i>Site maintained by Romain Li&eacute;vin (</i><a
  148. href="mailto:roms@lpg.ticalc.org"><i>roms@lpg.ticalc.org</i></a><i>)
  149. and Tim Singer (</i><a href="mailto:tsinger@gladstone.uoregon.edu"><i>tsinger@gladstone.uoregon.edu</i></a><i>)</i>
  150. </body>
  151. </html>