The SparkFun LilyPad Vibe Board is a compact, sewable electronics module designed to add haptic feedback to wearable projects. It integrates a vibration motor that can be controlled to provide notifications or tactile feedback in soft circuits. This board is part of the LilyPad wearable e-textile technology developed by Leah Buechley and cooperatively designed by SparkFun and Leah. It's commonly used in DIY wearables, costumes, interactive art, and soft robotics.
Pin Label | Description |
---|---|
+ |
Connect to VCC (3V to 5V) |
- |
Connect to ground (GND) |
S |
Digital signal input (High to activate) |
+
pin to a 3V to 5V power supply and the -
pin to ground.S
pin to a digital output on your microcontroller, such as an Arduino UNO.S
pin to turn on the vibration motor and a LOW signal to turn it off.// Define the pin connected to the LilyPad Vibe Board
const int vibePin = 2;
void setup() {
// Set the vibe pin as an output
pinMode(vibePin, OUTPUT);
}
void loop() {
// Turn on the vibration motor
digitalWrite(vibePin, HIGH);
delay(1000); // Vibrate for 1 second
// Turn off the vibration motor
digitalWrite(vibePin, LOW);
delay(1000); // Pause for 1 second
}
Q: Can I wash the LilyPad Vibe Board? A: It's not recommended to wash electronic components. If necessary, remove the board before washing the fabric or project.
Q: How long can I run the vibration motor? A: The motor can run continuously, but to prevent overheating, it's best to use it intermittently.
Q: Can I control the intensity of the vibration? A: The intensity is fixed based on the voltage applied. However, you can create a pseudo-PWM effect by rapidly toggling the signal pin to vary the perceived intensity.
Remember to follow all safety guidelines when working with electronic components and ensure that your project is powered off when making adjustments or troubleshooting.