diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..4fae5e4 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# ATtiny85 Blink + +Runs on the Tel Aviv Makers ATtami board. + +## Prerequisites + + - AVR GCC + - ATMEL USB ISP (USBASP) programmer + +Recommended to use the following udev rule: + +```bash +$ cat /etc/udev/rules.d/98-usbasp.rules +SUBSYSTEM=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", GROUP="users", MODE="0666" +``` + +## Usage + +Connect the following pins: + + - Vcc + - Ground + - PB0 -- MOSI + - PB1 -- MISO + - PB2 -- SCK + - PB5 -- RST + +Then, run: + +```bash +$ make +``` +## Credits + +Based on work done by https://github.com/casebeer/attiny85-hello-world + |
