
Xadow - Vibration Motor
STDXadow - Vibration Motor
License
:Description
This small vibrator motor can vibrate like your phone. When using it, You only need to power for the module and then send "Vibration" command. In fact, The "Vibration" command is setting control pins to high level, then it will work. I like this module because it can creat a short-term shock to prompt me whether one operation was successful, such as shaking my arm to switch my iPhone songs, which sound terrible, and it is not like the buzzer which sound terrible.
Xadow is a though small but perfectly formed Arduino(TM) compatible board series containing several modules. It's a kit extremely suitable for space-sensitive projects such as wearable devices & arts designs, which have higher request on size, weight and flexible cascade connection.
You can find more modules here.
For more detail, please visit: http://www.seeedstudio.com/item_detail.html?p_id=1517
Demonstration
Here is a Demo Code showing how to turn on the vibration motor.
Hardware Installation:
Note: when connect Xadow Vibrator Motor to Xadow Main Board, you should concern about the connection direction. The connection method is that the unfilled corner of one Xadow module need to connect to the right angle of another module(see four corners of each Xadow module). Demo code like this:
void setup()
{
DDRF |= 0x01;
DDRB |= 0x04;
}
void loop()
{
//turn on the vibration motor
PORTF |= 0x01;
PORTB |= 0x04;
delay(1000);
//turn off the vibration motor
PORTF &= ~(0x01);
PORTB |= 0x04;
delay(1000);
//turn on the vibration motor
PORTF |= 0x01;
PORTB |= 0x04;
delay(1000);
//turn off the vibration motor
PORTF |= 0x01;
PORTB &= ~(0x04);
delay(1000);
//turn on the vibration motor
PORTF |= 0x01;
PORTB |= 0x04;
delay(1000);
//turn off the vibration motor
PORTF &= ~(0x01);
PORTB &= ~(0x04);
delay(1000);
}
Design Drawing
BOM
ID | Name | Designator | Footprint | Quantity |
---|---|---|---|---|
1 | FPC052002-12LT | J2,J3 | 12P-0.5 | 2 |
2 | SEEEDSTUDIO_SCH_FRAME | U$1 | 1 | |
3 | EXT_MOUDLE_MOTOR_1CM | M1 | EXT_MOUDLE_MOTOR_1CM | 1 |
4 | s9013 | Q2,Q1 | SOT23 | 2 |
5 | 1R | R4 | R0603 | 1 |

Project Members

Comment