Ks0102 keyestudio EASY plug Active Buzzer Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
Line 47: Line 47:
http://www.keyestudio.com/keyestudio-easy-plug-active-buzzer-module-for-arduino.html
http://www.keyestudio.com/keyestudio-easy-plug-active-buzzer-module-for-arduino.html


[[category:Module]]
[[category:EASY Plug]]

Revision as of 10:41, 30 October 2018

EASY plug Active Buzzer Module


thumb

Introduction

Here is the simplest sound making module. You can use high/low level to drive it. Changing the frequency it buzzes can produce different sound. This module is widely used on your daily appliance, like PC, refrigerator, phones etc. And you can also create many interesting interactive project with this small but useful module. Just try it!! You will find the electronic sound it creates so fascinating.
Note: this module needs to be used together with EASY plug control board.


Specification

  • Interface: Easy plug
  • Working voltage: 3.3-5v
  • Sensor type: digital
  • Size: 39*20mm
  • Weight: 6g


Connection Diagram


thumb


Sample Code

int buzzPin =  10;    //Connect Buzzer on Digital Pin10
void setup()  
{        
 pinMode(buzzPin, OUTPUT);    
}
void loop()                    
{
 digitalWrite(buzzPin, HIGH);
 delay(1);
 digitalWrite(buzzPin, LOW);
 delay(1);        
}

Resources

Datasheet

https://drive.google.com/open?id=1Ak9val5HWKKb7B8gSwwykKUhk9Ewfolu

Buy from

Official Website

http://www.keyestudio.com/keyestudio-easy-plug-active-buzzer-module-for-arduino.html