Articles Posted in the " " Category

  • leftToRight()

    leftToRight()

    描述 设定液晶显示器显示字元的排列方式为由左至右(预设的状态),这设定不影响已经显示在液晶显示器上的字元。 语法 lcd.leftToRight() 参数 无参数 See also - rightToLeft() 函式库参考主页面 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.


  • noAutoscroll()

    noAutoscroll()

    描述 关闭液晶显示器自动滚动的功能。 语法 lcd.noAutoscroll() 参数 无参数 See also - autoscroll() 函式库参考主页面 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.


  • autoscroll()

    autoscroll()

    描述 启动液晶显示器自动滚动的功能,启动自动滚动的功能后,如果目前字元排列的方式是由左至右(预设的状态),每次有新的字元要显示在液晶显示器上时,都会使原本显示的字元往左移动一行,反之如果是由右至左则会往右移动一行,如此使每次新加入的字元都会在同一个位置上。 语法 lcd.autoscroll() 参数 无参数 See also - noAutoscroll() 函式库参考主页面 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.


  • scrollDisplayRight()

    scrollDisplayRight()

    描述 使液晶显示器上显示的资料往右移动一行。 语法 lcd.scrollDisplayRight() 参数 无参数 范例 - scrollDisplayLeft() and scrollDisplayRight() See also - scrollDisplayLeft() 函式库参考主页面 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.


  • 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.