Version: 2.1.0
Release date: 2020-09-11
www.pololu.com
This is a library for an Arduino-compatible controller that interfaces with the Pololu Zumo Shield, Zumo Reflectance Sensor Array, Zumo robot kit, and Zumo robot for Arduino. It provides functions to help you program an Arduino-controlled Zumo robot, and the included example sketches demonstrate how to use them for more complex tasks.
For more information about the library and examples, please see the Zumo Shield user's guide.
Please note that this library does NOT work with the Zumo 32U4 Robot, which is a very different product. The Zumo 32U4 Robot has an integrated Arduino-compatible microcontroller. If you have the Zumo 32U4 Robot, then you should not use this library and instead refer to the Zumo 32U4 Robot documentation.
The Zumo Shield for Arduino can be purchased on Pololu's website:
See the Zumo Shield user's guide for more details about purchasing and assembling the hardware.
If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install this library:
If this does not work, you can manually install the library:
Several example sketches are available that show how to use the library. You can access them from the Arduino IDE by opening the "File" menu, selecting "Examples", and then selecting "ZumoShield". If you cannot find these examples, the library was probably installed incorrectly and you should retry the installation instructions above.
The Example sketches section of the Zumo Shield user's guide describes some of these examples in more detail.
The main classes provided by the library are listed below:
This library also includes copies of several other Arduino libraries inside it, which are used to help implement the classes and functions above.
Additionally, the LSM303 and L3G libraries are included for backward compatibility with older versions of the ZumoShield library, but we recommend using the ZumoIMU class to interface with the inertial sensors instead.
You can use these libraries in your sketch automatically without any extra installation steps and without needing to add any extra #include
lines to your sketch.
You should avoid adding extra #include
lines such as #include <Pushbutton.h>
because then the Arduino IDE might try to use the standalone Pushbutton library (if you previously installed it), and it would conflict with the copy of the Pushbutton code included in this library. The only #include
lines needed to access all features of this library are:
#include <Wire.h>
#include <ZumoShield.h>
For complete documentation, see https://pololu.github.io/zumo-shield-arduino-library. If you are already on that page, then click on the links in the "Classes and functions" section above.