به فروشگاه ما خوش آمدید هم اکنون می توانید وارد حساب خود شوید و یا حساب جدید باز نمایید.
تلفن تماس تلگرام و واتس آپ Whatsapp & Telegram +989177629869
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 a... جزئیات بیشتر »
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.
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 | ||
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.