Skip to content

Commit 33fa580

Browse files
author
Anne Jan Brouwer
committed
INSTALL.md added
1 parent bcb93df commit 33fa580

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

documentation/INSTALL.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Installing
2+
----------
3+
4+
**On most systems, just copy the "hardware" and "libraries" folders into your Arduino folder.**
5+
6+
On Windows you can find this folder in the "My Documents" folder. On most unixes in your home folder.
7+
8+
On some picky linux systems you might need to do the following:
9+
```
10+
sudo mkdir /usr/share/arduino/hardware/arduino/avr/variants/ijduino
11+
sudo cp hardware/ijhack/avr/variants/ijduino/pins_arduino.h /usr/share/arduino/hardware/arduino/avr/variants/ijduino/
12+
sudo cat hardware/ijhack/avr/boards.txt >> /usr/share/arduino/hardware/arduino/avr/boards.txt
13+
```
14+
15+
On Mac OS X just copy into the Application folder:
16+
```
17+
cp -r hardware/ijhack /Applications/Arduino.app/Contents/Java/hardware
18+
cp -r libraries/* /Applications/Arduino.app/Contents/Java/libraries
19+
```
20+
21+
22+
USB-ASP Programmer
23+
------------------
24+
25+
You probably need to add a udev rule to get this working. Place the following at `/etc/udev/rules.d/99-usbasp.rules`
26+
27+
```
28+
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666"
29+
```
30+
Then run `udevadm trigger` to reload the udev rules.
31+

0 commit comments

Comments
 (0)