From a0e3f0373ddea97beeb64270db3d5dd91e1bbc0c Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Mon, 28 Jul 2014 22:55:18 +0300 Subject: Initial code --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md (limited to 'README.md') 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 + -- cgit v1.3.1