week8
Downloads
Arduino code ino file
2.Fabkit
Materials
1 Atmega 168
1 Crystal 8 MHz (resonator)
1 Capacitor 10 uF
2 Capacitor 0.1 uF
1 Capacitor 1 uF
1 Resistor 10 K
1 Resistor 499 ohm
1 Led
1 FTDI 3.3-5V
1 8 male pin connector
2 8 female pin connector
1 button SMD
Files
trace
hole
outline
Making connection part to ISP
I got fabkit after milling and soldering.
I had one thing left.
I needed to make connection header and pins to connect ISP and fabkit.
I had to compare attiny168 components and fab isp.
So I found the right direction.
First before doing that, I made the connection pins and header.
That is the right connetion.
Fabkit:RST,MOSI,MISO,SCK,GND,VCC.
ISP:MISO,VCC,SCK,MOSI,RST,GND.
Both orders are only for that direction(on the picture).
Programming
code
const int ledPin = 13;
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
setting
You should remeber! using 'arduino pro or pro mini' as board.
And then Atmega168(3.3v, 8mhz)-(It's for ur the kind of attiny)
Result
Done!!!!!!
Download
fabkit.ino file