Articles Posted by the Author:

  • scrollDisplayLeft()

    scrollDisplayLeft()

    描述 使液晶显示器上显示的资料往左移动一行。 描述 lcd.scrollDisplayLeft() 参数 无参数 范例 - scrollDisplayLeft() and scrollDisplayRight() See also - scrollDisplayRight() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • noDisplay()

    noDisplay()

    描述 隐藏液晶显示器印出的资料,被隐藏的资料并不会消失,可以呼叫 display() 使被隐藏的资料重新显示。 语法 lcd.noDisplay() 参数 无参数 范例 - display() and noDisplay() See also - display() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • display()

    display()

    描述 把因为呼叫 noDisplay() 而被隐藏的内容显示出来。 语法 lcd.display() 参数 无参数 范例 - display() and noDisplay() See also - noDisplay() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • noBlink()

    noBlink()

    描述 隐藏液晶显示器闪烁的游标。 语法 lcd.noBlink() 参数 无参数 范例 - blink() and noBlink() See also - blink() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • blink()

    blink()

    描述 在液晶显示器上显示闪烁的游标。如果与 cursor() 溷合使用,结果将取决于使用的液晶显示器。 语法 lcd.blink() 参数 无参数 范例 - blink() and noBlink() See also - noBlink() - cursor() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • noCursor()

    noCursor()

    描述 隐藏液晶显示器的游标。 语法 lcd.noCursor() 参数 无参数 范例 - cursor() and noCursor() See also - cursor() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • cursor()

    cursor()

    描述 在液晶显示器上显示游标。 语法 lcd.cursor() 参数 无参数 范例 - cursor() and noCursor() See also - noCursor() 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • print()

    print()

    描述 在液晶显示器上显示文字。 语法 lcd.print(data) lcd.print(data, BASE) 参数 data:要显示在液晶显示器上的资料,型态可为 char, byte, int, string BASE (非必要):BASE 用来指定资料的格式;可用的格式有:BIN (二进位格式)、OCT (八进位格式)、DEC (十进位格式)、HEX (十六进位格式) 回传 byte:回传输出到液晶显示器上的字元数 范例 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the […]


  • write()

    write()

    描述 在液晶显示器上显示字元。 语法 lcd.write(data) 参数 data:要显示到液晶显示器上的字元 回传 byte:回传输出到液晶显示器上的字元数 范例 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • setCursor()

    setCursor()

    描述 移动液晶显示器的游标至指定位置。 语法 lcd.setCursor(col, row) 参数 col:游标新位置的行数,行数从 0 开始计算 row:游标新位置的列数,列数从 0 开始计算 函式库参考主页面 The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.