1
0
mirror of https://github.com/mik3y/usb-serial-for-android.git synced 2026-08-11 08:22:52 +00:00

Merge pull request #147 from jmiguelrc/add_support_arduino_micro

Add support for Arduino Micro (Issue #146)
This commit is contained in:
mike w
2016-09-11 16:29:18 -04:00
committed by GitHub
2 changed files with 2 additions and 0 deletions
@@ -334,6 +334,7 @@ public class CdcAcmSerialDriver implements UsbSerialDriver {
UsbId.ARDUINO_MEGA_ADK,
UsbId.ARDUINO_MEGA_ADK_R3,
UsbId.ARDUINO_LEONARDO,
UsbId.ARDUINO_MICRO,
});
supportedDevices.put(Integer.valueOf(UsbId.VENDOR_VAN_OOIJEN_TECH),
new int[] {
@@ -48,6 +48,7 @@ public final class UsbId {
public static final int ARDUINO_MEGA_ADK_R3 = 0x0044;
public static final int ARDUINO_SERIAL_ADAPTER_R3 = 0x0044;
public static final int ARDUINO_LEONARDO = 0x8036;
public static final int ARDUINO_MICRO = 0x8037;
public static final int VENDOR_VAN_OOIJEN_TECH = 0x16c0;
public static final int VAN_OOIJEN_TECH_TEENSYDUINO_SERIAL = 0x0483;