Skip to content

Instantly share code, notes, and snippets.

@mikaelhg
Created March 28, 2016 11:38
Show Gist options
  • Save mikaelhg/6dcc3dc0ad6ed42217bc to your computer and use it in GitHub Desktop.
Save mikaelhg/6dcc3dc0ad6ed42217bc to your computer and use it in GitHub Desktop.
Arduino notes

Arduino would be able to send programs to the device as root, but not as user.

sudo apt-get --purge remove modemmanager

/etc/udev/rules.d/usbasp.rules

ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", MODE="0666", GROUP="plugdev"
ATTRS{idVendor}=="2341", ATTRS{idProduct}=="8036", MODE="0666", GROUP="plugdev"

Add all the Arduino clone devices found by lsusb there.

Useful resources: http://forum.arduino.cc/index.php?topic=129647.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment