Articles Posted by the Author:

  • getXChange()

    getXChange()

    Description Reports the relative amount of movement of a mouse on the X-axis since the last time polled. A positive number indicates movement to the right, a negative number indicates movement to the left. Syntax mouse.getXChange() Parameters none Returns int Example See Also - mouseDragged() - mousePressed() Libraries Reference Home The text of the 86Duino […]


  • mouseReleased()

    mouseReleased()

    描述 mouseReleased() 是一個函式,當 USB 的滑鼠按鍵釋放時被呼叫。 語法 void mouseReleased() {   // statements } 範例 參見 - mouseMoved() - mouseDragged() - mousePressed() - getXChange() - getYChange() - getButton() 函式庫參考主頁面 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 […]


  • mousePressed()

    mousePressed()

    Description mousePressed() is a function that is called whenever a button on a connected USB mouse is pressed. Syntax void mousePressed() {   // statements } Example See Also - mouseMoved() - mouseDragged() - mouseReleased() - getXChange() - getYChange() - getButton() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino […]


  • mouseDragged()

    mouseDragged()

    Description mouseDragged() is a function that is called whenever a connected USB mouse is dragged (movement while a mouse button is being pressed). Syntax void mouseDragged() {   // statements } Example See Also - mouseMoved() - mousePressed() - mouseReleased() - getXChange() - getYChange() - getButton() Libraries Reference Home The text of the 86Duino reference is […]


  • mouseMoved()

    mouseMoved()

    Description mouseMoved() is a function that is called whenever a connected USB mouse moves. Syntax void mouseMoved() {   // statements } Example See Also - mouseDragged() - mousePressed() - mouseReleased() - getXChange() - getYChange() - getButton() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed […]


  • MouseController

    MouseController

    Description MouseController is the class for all calls to the USBHost relating to an attached mouse. Syntax MouseController mouse(usb); Example Functions - mouseMoved() - mouseDragged() - mousePressed() - mouseReleased() - getXChange() - getYChange() - getButton() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]


  • Task()

    Task()

    Description Task() polls connected usb devices for updates to their status. Syntax usb.Task() Parameters usb : the name of the USB controller object Example See also - MouseController - KeyboardController - USBHost Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons […]


  • USBHost

    USBHost

    Description USBHost is the base class for all calls that the access of USB keyboards and mice relys on. Syntax USBHost usb; See also - MouseController - KeyboardController Libraries Reference Home 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 […]



  • IRremote Library

    IRremote Library

    This library is available from 86Duino Coding 104 and is an 86Duino porting of Ken Shirriff’s IRremote library. There are many Arduino-based tutorials of the IRremote library on the internet, which also apply to 86Duino; the following are some of them for one’s reference: Remote Control your Arduino Arduino Remote Control Tutorial IR Remote Arduino […]