@@ -14,28 +14,25 @@ https://github.com/IJHack/ijduino/blob/master/documentation/ijduino.pdf?raw=true
1414Installing
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
3531USB-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```
4138SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666"
0 commit comments