- 8X8 LED grid Max7219
- Mini Breadboard
- Atmega328
- Button
http://ijhack.nl/project/ijduino
https://pad.ijhack.nl/p/ijduino
https://github.com/IJHack/ijduino/blob/master/documentation/ijduino.pdf?raw=true
Create a folder "ijduino" in the "variants" folder of the Arduino IDE and copy the file "pins_arduino.h" from the "hardware" folder there.
Add the text from the "boards.txt" file in the "hardware" folder to the "boards.txt" file in the Arduino IDE.
sudo mkdir /usr/share/arduino/hardware/arduino/variants/ijduino
sudo cp hardware/pins_arduino.h /usr/share/arduino/hardware/arduino/variants/ijduino/
sudo cat hardware/boards.txt >> /usr/share/arduino/hardware/arduino/boards.txt
You probably need to add a udev rule to get this working. Place the following at /etc/udev/rules.d/99-usbasp.rules
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666"
Then run udevadm trigger
to reload the udev rules.