Buzzer  plug [v 1.1]  Product Manual

     

                    Updated on: ​27th November 2017   

Product Manual: Buzzer Plug 

Index  About Elint Labz



Introduction



Specification



Operating voltage: 5V



Variants



Supported cables:



Details



How to interface?



Example Codes Code 1: Arduino

8  8 

Code 2: 8051



 

                           

Elint Labz (​www.elintlabz.in​) 

 

Page 1 of 9 

Product Manual: Buzzer Plug 

     

About Elint Labz  Elint  Labz  (usually  abbreviated  as  EL)  is  an  electronics  design  &  development  tools  designer  &  manufacturer  with  headquarters  in  Bengaluru,  India.  We  design,  develop  &  manufacture  development  boards  based  on  micro-controller  &  microprocessors,  breakout  boards  for  various  sensors  &  actuators. Our domain & expertise is in the area of  Electronics & Embedded Systems.    Elint  Labz  was  founded  in  2014  however  the  actual operations started from 2015 when it  became  a  full  time  subsidiary  of  Hogst Innovative Solutions Pvt. Ltd. & is presently a part  of  Ajaramara  Group  a  conglomerate  of  various  domains  of  industries,  registered  in  India  as Ajaramara Dynamics Pvt. Ltd. under Companies Act of 2013.    As  in  the  name  company  (Elint  Labz)  –  Electronic  intelligence  (​ELINT​)  is  intelligence  gathered  by  the  use  of  electronic  sensors,  Laboratories  (LABZ)  are  facilities  that  provides  controlled  conditions  in  which scientific or technological research, experiments  and  measurement  may  be  performed.  EL  is  an  enterprise  built  to  develop  smart  &  intelligent  electronics  &  EL  is  committed  to  help  achieve  electronics  literacy in India. No  matter  the  vision  or  skill  level,  our  products  and  resources  are  designed  to  make  electronics & programmable development hardware more accessible.    Elint  Labz  as  a  platform  helps  developers  &  young  engineers  from  prototyping  to  product  development.  We  provide  open  source  hardware  solutions  and  small  quantity  manufacturing  services  using  a  design  from  manufacturing  framework.  We  are  a strong  promoter  of  the  maker  movement  in  India,  most  of  the  manufacturing  happens  with  support  of  our  various  Indian  partners  &  couple  of  our  collaboration  partners  who  have  manufacturing & sourcing facilities in Germany, Korea & Shenzhen.     To know more visit the about us section on our website: ​http://elintlabz.in/about-us/      Elint Labz (HQ)  ˗ #​200 1​st main Arekere MICO layout ​2​nd stage   Bengaluru ​560076​ KA ​[Marked on Google Maps]  ✆ ​+91 855 377 2525  ː ​[email protected]    

 

Elint Labz (​www.elintlabz.in​) 

 

Page 2 of 9 

Product Manual: Buzzer Plug 

 

   

 

Elint Labz (​www.elintlabz.in​) 

 

Page 3 of 9 

Product Manual: Buzzer Plug 

Introduction 

  A  buzzer  is  a  two  terminal  device  which  produces  an  audio  signal.  It  can  be  mechanical,  electromechanical  or  piezoelectric.  Typical  uses  of  buzzers  include  alarm  devices,  timers  and  confirmation  of  user  input  such  as  a  mouse  click  or  keystroke.     Elint  labz  has  built  a  plug for the buzzer to make use of it in the digital controlling  systems.  This  PCB  design enables you to mount the buzzer to any position as per  the user’s need and also this plug can be mounted anywhere using screws.    

   

Specification   

● Operating voltage: 5V  ● Size: 24mm x 26mm 

Variants  VERSION V2

Elint Labz (​www.elintlabz.in​) 

PORT TYPE

SKU

Straight

EL-BUZZPLU-201

Right-angled

EL-BUZZPLU-202

 

Page 4 of 9 

Product Manual: Buzzer Plug 

Supported cables:  ● 4-3A  ● 3-3A   

Details  Buzzer  plug  is  a  digital  output  device  for  the  interfacing  system.  It  has  a  piezo  buzzer  with  the  transistor  driver  circuit  in  order  to  activate  and  deactivate  the  buzzer  with  logic  levels  of  input  signal.  It  has  a  1KΩ  resistor  to  control  the  input  current.     It  has  an  interfacing  port  with  three  pins  named  as G, V and D. Here G represents  ground.  V  represents  VCC  and  D  represents  Data  pin  through  which  buzzer  can  be turned ON or OFF.    when  the  Data  pin  (D)  is  made  HIGH,  the  buzzer  turns  ON(make  sound).  When  D  pin  is  made  LOW,  buzzer  turns  OFF  (stops  making  sound).  It  is  provided  with  a  white strip for indication purpose at the back of the PCB.   

   

Elint Labz (​www.elintlabz.in​) 

 

Page 5 of 9 

Product Manual: Buzzer Plug 

How to interface?  Use  either  of  the  supported  interfacing  cables  to  connect this Buzzer plug to the  controller board .    ● If  4-3A  cable  is  to  be  used  then  3  pin  end  of the cable must be connected  to  the  Buzzer  plug  and  4  pin  end  of  the  cable  is  connected  to  the  controller board.    ● If  3-3A  cable  is  to  be  used  then  either  end  of  the  cable  can  be  connected  to  the  buzzer  plug.  Always  make  sure  that  the  black  wire  of  the  cable  connects to the G pin on both ends.    In  the  below  given  pictures  you  can  see  that  4-3A  cable  is  used  to  connect  Buzzer  plug  to  the  Pluguino  Board.  The  data  pin  of the Buzzer plug is connected  to  the  11th  GPIO  pin  on the controller board. By controlling the voltage at the 12th  GPIO pin of the controller you can control the buzzer.   

Elint Labz (​www.elintlabz.in​) 

 

Page 6 of 9 

Product Manual: Buzzer Plug 

     

Elint Labz (​www.elintlabz.in​) 

 

Page 7 of 9 

Product Manual: Buzzer Plug 

   

Example Codes   

Objective​-  ​This  example  demonstrates  the  working  of  a  Buzzer  plug.  Here  the 

Buzzer  turns  on  when  the  push  button  is  pressed,  when  released  Buzzer  turns  off.    

Code 1: Arduino  #define Button_Pin 12 is connected to 12th pin #define Buzzer_Pin 11 connected to 11th pin boolean Button_State = LOW; pushbutton status void​ ​setup​() { pinMode(Buzzer_Pin, OUTPUT); pin pinMode(Button_Pin, INPUT); pin

​// push button plug ​// Buzzer plug is ​// variable to store

​// Make 11th pin as OUTPUT ​// Make 12th pin as INPUT

void​ ​loop​() {

Elint Labz (​www.elintlabz.in​) 

 

Page 8 of 9 

Product Manual: Buzzer Plug 

Button_State = digitalRead(Button_Pin); pushbutton and store it. if​ ( Button_State == HIGH) state with HIGH { digitalWrite(Buzzer_Pin, HIGH); then turn ON Buzzer } else { digitalWrite(Buzzer_Pin, LOW); then turn OFF Buzzer } }

​// read the state of the ​//Compare button ​// If buttonstate is HIGH

​// If button state is LOW

Output video:​ https://youtu.be/cdfTVpjirTc    

Code 2: 8051  // Program to beep a Buzzer at Port pin P0.0 #include // special function register declarations for 89s52 #include // prototype declarations for I/O functions sbit Buzzer = P0^​0​; ​// defining pin P0^0 as Buzzer void​ ​delay​(​void​)​; ​//delay function prototype declaration void​ ​main​ ​(​void​) { Buzzer = ​0​; // Make Buzzer pin as Output while​(​1​) //indefinite loop { Buzzer = ​0​; // Buzzer Off delay(); Buzzer = ​1​; // Buzzer ON delay(); } } void​ ​delay​(​void​) { int​ j; int​ i; for​(i=​0​;i<​500​;i++) { for​(j=​0​;j<​1000​;j++) Elint Labz (​www.elintlabz.in​) 

 

Page 9 of 9 

Product Manual: Buzzer Plug 

{ } } } Output video:    

Example Codes   

● Buzzer Plug   

Elint Labz (​www.elintlabz.in​)  9 

 

Page 10 of 

Buzzer plug [v 1.1]

manufacture development boards based on micro-controller & microprocessors, breakout boards ... the user's need and also this plug can be mounted anywhere using screws. ... to the Buzzer plug and 4 pin end of the cable is connected to the.

8MB Sizes 0 Downloads 283 Views

Recommend Documents

Buzzer Plug
output pin. } /* the loop function runs over and over again forever*/ void​ ​loop​(). {. digitalWrite(Buzzer_pin, HIGH); ​// activate the buzzer delay(​1000​);. ​// wait for a second. digitalWrite(Buzzer_pin, LOW); ​// deactivate the

Plug pump into GFCI protected outlet. 11. 4165F ... - Henri Studio
Locate a suitable site for your. 1. Apex Rock Fountain. ... Disassemble entire fountain and pump and store indoors during the winter season. If you cannot store ...

Plug pump into GFCI protected outlet. 11. 4165F ... - Henri Studio
Fill Basin with water. Plug pump into GFCI protected outlet. 11. Adjust Restrictor as necessary to control water flow. 12. Place decorative stone to camouflage tray ...

Veckobrev v. 11.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Veckobrev v.

TSOP Plug
Nov 27, 2017 - TSOP, an IR receiver, outputs a constant HIGH signal when it is idle and as it receives data from the remote, it tends to invert the data. i.e when an IR LED of the remote is transmitting data onto the TSOP, every time the IR led goes

Relay​ ​Plug
Index. 1. Introduction. 2. Specification. 3. Operating​ ​voltage:​ ​5V. 3. Variants. 4 .... To activate the relay Plug the corresponding data pin on the controller board to ... Normally Open Contact (NO): ​NO contact is also called 'make co

Actavis-v- Lily Judgment - 16 11 15.pdf
MICHAEL TAPPIN QC, ISABEL JAMAL and WILLIAM DUNCAN. (instructed by Pinsent Masons LLP) for the Claimants. TOM MITCHESON QC and JEREMY HEALD (instructed by Simmons & Simmons. LLP) for the Defendant. Hearing dates: 6,7,8,9,13 and 14th October 2015. - -

Actavis-v- Lily Judgment - 16 11 15.pdf
Loading… Page 1. Whoops! There was a problem loading more pages. Actavis-v- Lily Judgment - 16 11 15.pdf. Actavis-v- Lily Judgment - 16 11 15.pdf. Open.

Philly v. Sessions 11-15-17.pdf
3 hours ago - Page 3 of 133. Philly v. Sessions 11-15-17.pdf. Philly v. Sessions 11-15-17.pdf. Open. Extract. Open with. Sign In. Main menu. Page 1 of 133.

Cheap New Eu To China Plug Adapter Socket Plug Converter ...
Cheap New Eu To China Plug Adapter Socket Plug Conve ... lectrical Outlet Free Shipping & Wholesale Price.pdf. Cheap New Eu To China Plug Adapter Socket ...

Rotary sensor plug
A Rotary potentiometer is a three terminal variable resistor with a rotating contact that forms an adjustable voltage divider. An adjustable potentiometer can open.

Joystick Plug
3. Variants. 4. Supported cables. 4. Details. 4. How to interface? 5. Example Codes. 7. Arduino. 7. Contributors. 8. Elint Labz (​www.elintlabz.in​). Page 1 of 7 .... Supported cables. ○ 4-4A. Details. Joystick plug is a analog input device to

LED Plug
Jun 5, 2017 - In this example, we are going to blink an LED with 1 second delay that means LED turns. ON for one second and turns OFF for another second. Example Codes. Code 1: Arduino void setup(). {. pinMode(12,OUTPUT); // define 12th GPIO pin as O

ULUYOS 2018 KILAVUZ TR V.11.pdf
Whoops! There was a problem loading more pages. Retrying... ULUYOS 2018 KILAVUZ TR V.11.pdf. ULUYOS 2018 KILAVUZ TR V.11.pdf. Open. Extract.

Slide switch plug
#define second_led 13 ​//second LED is connected to 13th pin. #define first_datapin 10 ​//D1 of slide switch is connected to. 10th pin. #define second_datapin ...

THERMISTOR PLUG [v2]
Nov 27, 2017 - manufacturing services using a design from manufacturing framework. ... large, predictable and precise change in electrical resistance when ...

USB—A—Plug - CQHAM.ru
Opendous inc. deeded this hardware design into the Public Domain. Opendous Inc. Title: Upconverter—iOOMHl—13LO—SMS3926—CX2147. Size: A4 i Date: ...

Thermistor Plug
Nov 27, 2017 - As in the name company (Elint Labz) – Electronic intelligence (​ELINT​) is intelligence gathered by the use of ... intelligent electronics & EL is committed to help achieve electronics literacy in India. No matter the vision ...

LED Plug [v2]
Product Manual: LED Plug. Introduction. This version of LED plug has an LED, SMD resistors and a transistor. In this plug. CTBC 547B transistor is used, It has a ...

Object Sensor Plug
Nov 27, 2017 - 4. Supported cables: 5. Details. 5. How to interface? 5. Example Codes. 7. Code 1: Arduino. 7. Elint Labz (​www.elintlabz.in​). Page 1 of 6 ...

Sladovnícka 11 parc. č. 52925 v k.ú. Trnava.pdf
Try one of the apps below to open or edit this item. Sladovnícka 11 parc. č. 52925 v k.ú. Trnava.pdf. Sladovnícka 11 parc. č. 52925 v k.ú. Trnava.pdf. Open.

Cheap Apm2.5 2.6 2.8 Buzzer Active Horn Alarm Tracking Number ...
Cheap Apm2.5 2.6 2.8 Buzzer Active Horn Alarm Tracking ... 2.6 2.8 Intelligent Flight Controller Free Shipping.pdf. Cheap Apm2.5 2.6 2.8 Buzzer Active Horn ...