diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-07-28 22:55:18 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-07-28 22:55:18 +0300 |
| commit | a0e3f0373ddea97beeb64270db3d5dd91e1bbc0c (patch) | |
| tree | a152dabd49ffb8b4ae99b2ea821d5c050542dbd4 /README.md | |
Initial code
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 + |
