Skip to content

todd-herbert/unoHID

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unoHID

Use Arduino UNO as USB Keyboard and Mouse.

Aims to be compatible with official Arduino Mouse and Keyboard libraries.
A user-friendly implementation of Obdev's V-USB driver, for Arduino UNO R3 and other boards based on ATmega328P

API

What is V-USB?

V-USB is a software-only implementation of a low-speed USB device for Atmel’s AVR® microcontrollers, making it possible to build USB hardware with almost any AVR® microcontroller, not requiring any additional chip.

Some Arduino boards have native USB support; not the Uno. This library adds USB support, using the V-USB driver.

Your Arduino will not appear as a USB keyboard or mouse through the built in USB port. Instead, you will need to wire a secondary USB port, using pins 2,4 and 5.

Wiring

Schematic

schematic of V-USB wiring for use with the library

Demonstration

rendered graphic of V-USB wiring, set out on a breadboard

Pins 2, 4, and 5 are reserved for the library. You will get away with some variation, but remember that the D+ / D- lines will be very unhappy if they start to see much more than 3.3V.

Note: 5V should not be connected to target device when using the DevKit sketch. Find out more

Using the library

#include <unoHID.h>

void setup() {
    // Start USB connection
    Mouse.begin();
    Keyboard.begin();

    // Type some text
    Keyboard.print("Hello, World!");

    // Click the mouse
    Mouse.click();

    // End USB connection
    Mouse.end();
    Keyboard.end();
}

void loop() {}

You must call Mouse.begin() or Keyboard.begin() after you have already connected the USB port to the target device.

For a complete list of commands, consult the API. This library aims to be compatible with code written for the official Arduino Mouse and Keyboard libraries.

DevKit Sketch

To speed up development, this library comes bundled with a "DevKit" sketch. You can find this with the rest of the examples.

Upload the sketch to your Arduino and open a serial monitor (9600 baud) to access a command line for executing unoHID commands.

Note: 5V should not be connected to target device when using the DevKit sketch.
Find out more

Advanced Configuration

Timers

Some hardware requires periodic contact with the USB device (Arduino) to remain connected. By default, the library handles this automatically, by "polling" every 10ms with Timer 2.

This solution may be user-friendly, but it is not particularly elegant.

If needed, this automatic polling behaviour can be changed:

// Must come before #include
#define POLL_WITH_TIMER1

#include <unoHID.h>

or

// Must come before #include
#define POLL_MANUALLY

#include <unoHID.h>

void loop() {

    // Manual polling
    VUSB.poll();
}

Expect a note in your build output if this option has been successfully modified.

USB Device Name

It is possible to change the name reported by the USB device. Obdev, the authors of V-USB, have some requests, which you can read in USB-IDs-for-free.txt.

To change the device name, edit the file ./src/vusb/usb_descriptor.h, in your Arduino IDE libraries folder.

#define USB_CFG_DEVICE_NAME_LEN     6
#define USB_CFG_DEVICE_NAME         'U', 'n', 'o', 'H', 'I', 'D'
  • Names should be no longer than 18 characters
  • Length must be be updated to match new name
  • Name should be given as a set of chars, separated with commas (as shown above)

Rate-limiting

In the official examples from Arduino, pauses are manually added between updates.

If you would prefer, you can instead use Mouse.setTxDelay(duration) and Keyboard.setTxDelay(duration). All subsequent commands will be followed with a delay of duration (in milliseconds).

Default is 0ms for Mouse, and 20ms for Keyboard.

Connection Issues

In certain conditions, Arduino Nano appears to have difficulty beginning a USB connection.

The exact cause of this issue is unknown, but seems to involve the Windows driver for the Nano's USB Serial IC.

  • This issue does not occur when the Nano is powered only by the V-USB port.

  • This issue does not occur if Arduino IDE Serial Monitor is left open

Workaround:

Keeping the Arduino's reset pin HIGH during connection seems to prevent the issue.

UnoHID can take care of this. You must do two things:

  1. Directly connect Nano's RST pin to any spare pin.   (Example: Pin 6)

    diagram of Arduino Nano, with pin 6 wired directly to RST pin

  2. Define this pin as PIN_KEEPALIVE, before including the UnoHID library.

    #define PIN_KEEPALIVE 6
    #include "unoHID.h"
    
    // Continue as normal
    void setup() {
        Keyboard.begin();
    }

    This will automatically hold the reset pin HIGH during USB setup, (hopefully) preventing windows from resetting the Nano.

Installation

Arduino: Library can be installed to Arduino IDE with Sketch -> Include Library -> Add .Zip Library.., or through the built-in Library Manager.

Platform.io: Available through the built-in library registry, or alternatively, can be installed by extracting the Zip file to the lib folder of your project.