Board not Recognized and Programmer not responding.

Hi. To start off I’ve never had any prior coding experience but have been looking to program some servos for an upcoming project. For this I’m using a KNACRO I/O Expansion Sensor Shield Module for Arduino UNO R3 Nano V3.0/nano Pro and a Mini Nano V3.0 ATmega328P Microcontroller Board (not sure if these are compatible with the software), along with a USB cord. The Arduino application is able to recognize what poet my board is in, however when any code is uploaded it takes a while before I get the error message along with “programmer not responding”. A picture of my setup is also attached in this thread, any help is greatly appreciated.

Please do this:

  • (In the Arduino IDE) File > Preferences
  • Uncheck the checkbox next to "Show verbose output during: compilation"
  • Check the checkbox next to "Show verbose output during: upload
  • Click "OK"
  • Sketch > Upload
  • After the upload fails, you'll see a button on the right side of the orange bar "Copy error messages" (or the icon that looks like two pieces of paper at the top right corner of the black console window in the Arduino Web Editor). Click that button.
  • In a forum reply here, click on the reply field.
  • Click the </> button on the forum toolbar. This will add the forum's code tags markup to your reply.
  • Press "Ctrl + V". This will paste the upload output between the code tags.
  • Move the cursor outside of the code tags before you add any additional text to your reply.

Hi, do you guys have somo update of this issue. I am facing almost the same problem. My Arduino UNO doesn´t run my code, according to my understanding I have matched all the hardware connection correctly. I will share to you my code and connections.

void setup()
{
Serial.begin(9600);

}

void loop()
{
if( Serial.available() > 0)
{
Serial.println(Serial.read()); // prints the result to Serial Monitor
}
}

LUISRO847:
Hi, do you guys have somo update of this issue. I am facing almost the same problem. My Arduino UNO doesn´t run my code, according to my understanding I have matched all the hardware connection correctly. I will share to you my code and connections.

void setup()
{
Serial.begin(9600);

}

void loop()
{
if( Serial.available() > 0)
{
Serial.println(Serial.read()); // prints the result to Serial Monitor
}
}

Soft_Star's issue was that they couldn't upload their code to their Arduino board. From your description, it's not at all clear to me that you are having the same problem. Please provide a detailed description.