Skip to content

Commit 7763627

Browse files
author
Anne Jan Brouwer
committed
updated docs to make them easier to understand
1 parent 33fa580 commit 7763627

2 files changed

Lines changed: 20 additions & 26 deletions

File tree

README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,25 @@ https://github.com/IJHack/ijduino/blob/master/documentation/ijduino.pdf?raw=true
1414
Installing
1515
----------
1616

17-
**On most systems, just copy the "hardware" and "libraries" folders into your Arduino folder.**
17+
**Just copy the "hardware" and "libraries" folders into your "Arduino" sketches folder.**
1818

19-
On Windows you can find this folder in the "My Documents" folder. On most unixes in your home folder.
20-
21-
On some picky linux systems you might need to do the following:
19+
On most Linux and BSD this will be in your home folder.
2220
```
23-
sudo mkdir /usr/share/arduino/hardware/arduino/avr/variants/ijduino
24-
sudo cp hardware/ijhack/avr/variants/ijduino/pins_arduino.h /usr/share/arduino/hardware/arduino/avr/variants/ijduino/
25-
sudo cat hardware/ijhack/avr/boards.txt >> /usr/share/arduino/hardware/arduino/avr/boards.txt
21+
cp -r hardware ~/Arduino/
22+
cp -r libraries ~/Arduino/
2623
```
27-
28-
On Mac OS X just copy into the Application folder:
24+
On Mac OS X it's in the "Documents" folder.
2925
```
30-
cp -r hardware/ijhack /Applications/Arduino.app/Contents/Java/hardware
31-
cp -r libraries/* /Applications/Arduino.app/Contents/Java/libraries
26+
cp -r hardware ~/Documents/Arduino/
27+
cp -r libraries ~/Documents/Arduino/
3228
```
33-
29+
On Windows you can find the "Arduino" folder inside your "My Documents" folder.
3430

3531
USB-ASP Programmer
3632
------------------
3733

38-
You probably need to add a udev rule to get this working. Place the following at `/etc/udev/rules.d/99-usbasp.rules`
34+
On Linux you probably need to add a udev rule to get this working.
35+
Place the following at `/etc/udev/rules.d/99-usbasp.rules`
3936

4037
```
4138
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666"

documentation/INSTALL.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
Installing
22
----------
33

4-
**On most systems, just copy the "hardware" and "libraries" folders into your Arduino folder.**
4+
**Just copy the "hardware" and "libraries" folders into your "Arduino" sketches folder.**
55

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:
6+
On most Linux and BSD this will be in your home folder.
97
```
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
8+
cp -r hardware ~/Arduino/
9+
cp -r libraries ~/Arduino/
1310
```
14-
15-
On Mac OS X just copy into the Application folder:
11+
On Mac OS X it's in the "Documents" folder.
1612
```
17-
cp -r hardware/ijhack /Applications/Arduino.app/Contents/Java/hardware
18-
cp -r libraries/* /Applications/Arduino.app/Contents/Java/libraries
13+
cp -r hardware ~/Documents/Arduino/
14+
cp -r libraries ~/Documents/Arduino/
1915
```
20-
16+
On Windows you can find the "Arduino" folder inside your "My Documents" folder.
2117

2218
USB-ASP Programmer
2319
------------------
2420

25-
You probably need to add a udev rule to get this working. Place the following at `/etc/udev/rules.d/99-usbasp.rules`
21+
On Linux probably need to add a udev rule to get this working.
22+
Place the following at `/etc/udev/rules.d/99-usbasp.rules`
2623

2724
```
2825
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666"

0 commit comments

Comments
 (0)