九鼎创展论坛

标题: arduino ibox项目实战26-ASCIITable实验 [打印本页]

作者: armeasy    时间: 2014-10-28 14:32
标题: arduino ibox项目实战26-ASCIITable实验
硬件平台:PC机一台,ibox卡片电脑一只,arduino扩展板一个
软件平台:WIN7操作系统,android4.0android4.4系统
实验目标:通过串口打印函数将ascii码值在调试窗口打印出来。
打开arduino的IDE开发工具,依次点击文件->示例->04.Communication->ASCIITable,ASCIITable的示例程序将会被打开,其源码如下:
  1. void setup() {
  2.   //Initialize serial and wait for port to open:
  3.   Serial.begin(9600);
  4.   while (!Serial) {
  5.     ; // wait for serial port to connect. Needed for Leonardo only
  6.   }

  7.   // prints title with ending line break
  8.   Serial.println("ASCII Table ~ Character Map");
  9. }

  10. // first visible ASCIIcharacter '!' is number 33:
  11. int thisByte = 33;
  12. // you can also write ASCII characters in single quotes.
  13. // for example. '!' is the same as 33, so you could also use this:
  14. //int thisByte = '!';

  15. void loop() {
  16.   // prints value unaltered, i.e. the raw binary version of the
  17.   // byte. The serial monitor interprets all bytes as
  18.   // ASCII, so 33, the first number,  will show up as '!'
  19.   Serial.write(thisByte);

  20.   Serial.print(", dec: ");
  21.   // prints value as string as an ASCII-encoded decimal (base 10).
  22.   // Decimal is the  default format for Serial.print() and Serial.println(),
  23.   // so no modifier is needed:
  24.   Serial.print(thisByte);
  25.   // But you can declare the modifier for decimal if you want to.
  26.   //this also works if you uncomment it:

  27.   // Serial.print(thisByte, DEC);


  28.   Serial.print(", hex: ");
  29.   // prints value as string in hexadecimal (base 16):
  30.   Serial.print(thisByte, HEX);

  31.   Serial.print(", oct: ");
  32.   // prints value as string in octal (base 8);
  33.   Serial.print(thisByte, OCT);

  34.   Serial.print(", bin: ");
  35.   // prints value as string in binary (base 2)
  36.   // also prints ending line break:
  37.   Serial.println(thisByte, BIN);

  38.   // if printed last visible character '~' or 126, stop:
  39.   if (thisByte == 126) {    // you could also use if (thisByte == '~') {
  40.     // This loop loops forever and does nothing
  41.     while (true) {
  42.       continue;
  43.     }
  44.   }
  45.   // go on to the next character
  46.   thisByte++;
  47. }
复制代码
运行程序,观察调试窗口上的打印信息。






欢迎光临 九鼎创展论坛 (http://bbs.9tripod.com/) Powered by Discuz! X3.2