Hi,
the example for the Grove Encoder at
http://wiki.seeedstudio.com/Grove-Encoder/
does not work for a couple of reasons:
- the picture does now show the current version of the Base Shield v2 but something else
- the Circular LED must not be connected to A4/A5 but for example to D4/D5
- the initialization in the example uses
CircularLED circularLED;
without argumets. However, the constructor takes arguments of the form
CircularLED::CircularLED( int data, int clk)
and if the Circular LED is connected to D4/D5 should be chnaged to
CircularLED circularLED(5,4);
To make things more complicated the download link to the test program for the Circular LED
(CircularLEDtest) is broken at
http://wiki.seeedstudio.com/Grove-Circular_LED/
It would be good if the docs could be changed so the example would run out of the box.