Hi, I'm trying to program an Atmega328P on breadboard via an Arduino Uno.
But I encountered several problems, first of all the process doesn't work.
First of all I loaded this sketch onto the Arduino UNO.
After that, I wanted to load this test sketch onto the Atmega328P to see if it worked.
void setup() {
pinMode(9, OUTPUT);
}
void loop() {
digitalWrite(9, HIGH);
delay(1000);
digitalWrite(9, LOW);
delay(1000);
}
Using these settings:
But it doesn't work, I discovered that it is the Arduino Uno that is programmed, in fact if I then connect a LED to pin 9 of the Arduino it flashes.
That's the circuit:
What should I do?
Thanks for the help!





