fatal error: DualVNH5019MotorShield.h: No such file or directory

Hello I have an Arduino UNO and attempting to work with a VNH5019 motor driver carrier from Pololu.com. Loaded the zip file to folder, used Sketch – include in library – add zip. Library... Get this error message; I see the file in examples - "DualVNH5019MotorShield.h" Demo.
This is the error when I try to compile the sketch.

ARDUINO: 1.6.4 (WINDOWS 7), BOARD: "ARDUINO UNO"
C:\Program Files\Arduino\hardware\tools\avr/bin/avr-g++ -c -g -Os -Wall -Wextra -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10604 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR -IC:\Program Files\Arduino\hardware\arduino\avr\cores\arduino -IC:\Program Files\Arduino\hardware\arduino\avr\variants\standard C:\Users\RJEA26~1.STA\AppData\Local\Temp\build712852927239866363.tmp\Demo.cpp -o C:\Users\RJEA26~1.STA\AppData\Local\Temp\build712852927239866363.tmp\Demo.cpp.o
Demo.ino:1:36: fatal error: DualVNH5019MotorShield.h: No such file or directory
compilation terminated.
Error compiling.
#include "DualVNH5019MotorShield.h"

DualVNH5019MotorShield md;

void stopIfFault()
{
if (md.getM1Fault())
{
Serial.println("M1 fault");
while(1);
}
if (md.getM2Fault())
{
Serial.println("M2 fault");
while(1);
}
}

void setup()
{
Serial.begin(115200);
Serial.println("Dual VNH5019 Motor Shield");
md.init();
}

void loop()
{
for (int i = 0; i <= 400; i++)
{
md.setM1Speed(i);
stopIfFault();
if (i%200 == 100)
{
Serial.print("M1 current: ");
Serial.println(md.getM1CurrentMilliamps());
}
delay(2);
}

for (int i = 400; i >= -400; i--)
{
md.setM1Speed(i);
stopIfFault();
if (i%200 == 100)
{
Serial.print("M1 current: ");
Serial.println(md.getM1CurrentMilliamps());
}
delay(2);
}

for (int i = -400; i <= 0; i++)
{
md.setM1Speed(i);
stopIfFault();
if (i%200 == 100)
{
Serial.print("M1 current: ");
Serial.println(md.getM1CurrentMilliamps());
}
delay(2);
}

for (int i = 0; i <= 400; i++)
{
md.setM2Speed(i);
stopIfFault();
if (i%200 == 100)
{
Serial.print("M2 current: ");
Serial.println(md.getM2CurrentMilliamps());
}
delay(2);
}

for (int i = 400; i >= -400; i--)
{
md.setM2Speed(i);
stopIfFault();
if (i%200 == 100)
{
Serial.print("M2 current: ");
Serial.println(md.getM2CurrentMilliamps());
}
delay(2);
}

for (int i = -400; i <= 0; i++)
{
md.setM2Speed(i);
stopIfFault ();
if (i%200 == 100)
{
Serial.print ("M2 current: ");
Serial.println (md.getM2CurrentMilliamps());
}
delay(2);
}
}

Thank You for any and all guidance.
RJ

Hello I have an Arduino UNO and attempting to work with a VNH5019 motor driver carrier from Pololu.com. Loaded the zip file to folder, used Sketch - include in library - add zip. Library... Get this error message; I see the file in examples - "DualVNH5019MotorShield.h" Demo.

Post a link to the actual site where you got the library AS A LINK!

This it? Thank You
RJ

You should follow the directions on the Getting Started section of that page, rather than use the lame import function in the IDE.

I'd follow them, and try your code, but my laptop destroyed my tourbox in its mad rush to jump out onto the freeway on Tuesday. This one that I'm using now is not mine, and I don't have the Arduino software installed.

PaulS:
You should follow the directions on the Getting Started section of that page, rather than use the lame import function in the IDE.

I did follow the directions more than once before submitting my question.

I'd follow them, and try your code, but my laptop destroyed my tourbox in its mad rush to jump out onto the freeway on Tuesday. This one that I'm using now is not mine, and I don't have the Arduino software installed.

No offense but if you cannot run it on your system why bother with a reply? These tech sites are confusing enough for simple minded people like me. Thank you for wasting my time.

I replied because there are two sets of instructions. One involves using the Import Library menu item in the IDE. The other involves using common sense.

You said you followed the instructions that involved using the Import Library menu item.

If you don't want to try following the other instructions, fine. Wait until I get my new computer on Wednesday, and I'll follow them. When I confirm that they work (and I'm confident that they will), THEN you can follow them. But, follow them you will. Today or Thursday. Your choice.

OK I have tried up, down, sideways, the import library, dowloading the zip file and just down right copy and paste to no avail. So I will try other forums as well as you getting your puuter back. I have no problem with being wrong more than once a day!
Again thank you for your effort and hope you get your machine up and running!
RJ

Extract the attached file into your libraries folder.

DualVNH5019MotorShield.zip (3.12 KB)

did you actually unzip the library files ?

Isaac96:
Extract the attached file into your libraries folder.

Thank You it worked unzipping from your link! Can not see a difference in any of the folders or code?

Well, the GitHub download is structured differently from the usual library structure. The GitHub download has an extra layer of directories, which I removed. Glad I could help! :smiley:

Thank You, not good enough to see thi layer your talking about, willing to learn what to look for if your willing to teach.