How to solve this error arduino error: pins_arduino.h: There is no such file or directory

how to solve this error on my Arduino sketch,

In the file included in sketch_feb14a.cpp: 20: G: \ arduino-1.0-windows_2 \ arduino-1.0 \ hardware \ arduino \ cores \ arduino / Arduino.h: 212: 26: error: pins_arduino.h: There is no such file or catalog

+7
source share
4 answers

For the layout example, I added this to the boards.txt file that comes with the sample layout.

atmega328bb.build.variant=arduino:standard 
+6
source

Double-check which board you configured in the IDE, Tools-> Tip The contact file determines the pin configuration of your Arduino board.

If not, try a new IDE installation.

+3
source

You must add:

 sanguino.build.variant=standard 

to boards.txt so that the code works in arduino uno.

+2
source

This is a problem with the bootloader. The error occurs below situations

  • You have loaded the IDE incorrectly.
  • You haven’t set up a team or chosen the Tip you are working on.
  • If the two steps are performed correctly, this means that you loaded the program into the loop / infinte loop, which caused the bootloader to freeze. 4. Turn on the watchdog timer to read the problem again and again, after loading the bootloader
  • you will get avr Pocket programmer to record bootloader
-one
source

All Articles