http://www.pololu.com/file/download/libpololu-avr-131009.zip?file_id=0J680
I download pololu wheel library from this link.I load to arduino folder that is called src/pololuwheel encoder.
#include <PololuWheelEncoders.h>
#define pA0 4
#define pB1 5
#define pA1 6
#define pB1 7
PololuWheelEncoders enc;
void setup() {
enc.init( pA0, pB1, pA1, pB1 );
// place the rest of your code here !!
}
void loop () {}
when ? verify this code ,arduino give this error
sketch_apr05a.cpp.o: In function setup': C:\Program Files\Arduino/sketch_apr05a.ino:12: undefined reference to
PololuWheelEncoders::init(unsigned char, unsigned char, unsigned char, unsigned char)'
How can i fix?please help.