Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve this arduino error-error: pins_arduino.h: No such file or directory

Tags:

arduino

how do I solve this error on my Arduino sketch,

In file included from 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: No such file or directory

like image 719
Kate M Avatar asked Feb 14 '12 08:02

Kate M


2 Answers

For the breadboard example I added this to the boards.txt that comes with the breadboard sample.

atmega328bb.build.variant=arduino:standard
like image 102
Vorster Swanepoel Avatar answered Sep 27 '22 17:09

Vorster Swanepoel


Double check what board you have configured in the IDE, Tools->Board The pins file defines the pin configuration of your Arduino board.

If that's not it, then try a new install of the IDE.

like image 42
Hellonearthis Avatar answered Sep 27 '22 15:09

Hellonearthis