User Manual

04. Communication > ReadASCIIString
https://www.arduino.cc/en/Tutorial/ReadASCIIString
Example 4G
The code provided is wrong and is made for a common cathode RGB LED.
The kit includes a common anode RGB LED.
The code should be changed from:
red = 255 - constrain(red, 0, 255);
green = 255 - constrain(green, 0, 255);
blue = 255 - constrain(blue, 0, 255);
to:
red = 0 - constrain(red, 0, 255);
green = 0 - constrain(green, 0, 255);
blue = 0 - constrain(blue, 0, 255);
06. Sensors > Knock
https://www.arduino.cc/en/Tutorial/Knock
Example 06B
The piezo element is inside the black plastic case. To see a result, touch the sensor within the
case via the hole at the center.
06. Sensors > Memsic2125
https://www.arduino.cc/en/Tutorial/Memsic2125
Example 6C
The pins of the Memsic 2125 board from Parallax appear to be soldered to the wrong side of the
board. Verify before making connections.
09. USB > KeyboardLogout
https://www.arduino.cc/en/Tutorial/KeyboardLogout
Example 9A
The example works once, and then needs to be recompiled.
09. USB > JoystickMouseControl
https://www.arduino.cc/en/Tutorial/JoystickMouseControl