The vibration modules vibrates when it activated by signal logic HIHG, like the vibration of a phone. This module is consist of a Permanent Magnet coreless DC motor, with the upgraded driver, the vibration get much fierce, suitable for applications such toys and alarms.
With the panel mount design the vibration modules is easy to install, or stick onto other modules, to make them vibrates together with the vibration motor module.
Features
- Connection Mode: D(Digtal)
- Strengthen Vibration
Part List
- 1 X Crowtail-Vibration Motor
- 1 X Crowtail 3 Pin Cable
Wiki & External links
Features
- Crowtail compatible
- Low power consumption
- High reliability
Specification
Item | Min | Typical | Max | Unit |
---|---|---|---|---|
Voltage | 3.0 | 5.0 | 5.5 | V |
Control Mode | Logic Level (When Logic HIGH, the motor is ON. When LOW, the motor is OFF.) | – | ||
Rated speed | 9000 | rpm |
Usage
Here is an example showing how to turn on the vibration motor.
1. Plug it onto the Digital port 5 of Crowtail – Base Shield using a Crowtail cable.
2.Plug the Crowtail – Base Shield onto Arduino.
3. Connect Arduino to PC by using a USB cable.
4. Copy and paste code below to a new Arduino sketch, and upload it to your Arduino.
int MoPin = 5; // vibrator connected to digital pin 5 void setup() { pinMode( MoPin, OUTPUT ); } void loop() { digitalWrite(MoPin, HIGH); delay(1000); digitalWrite(MoPin, LOW); delay(1000); }
5.When you upload the code complete,you can see the vibrating motor vibrate at one second intervals.
دیدگاهها
هیچ دیدگاهی برای این محصول نوشته نشده است.