• Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Need circuit help? Post them in the comments! I've answered over 50,000!

Blog | Categories | About | Contact | Calculators-online
You are here: Home / Audio and Amplifier Projects / What is ISD1820 Module? How to Connect and Use

What is ISD1820 Module? How to Connect and Use

Last Updated on April 15, 2025 by Swagatam Leave a Comment

The ISD1820 is a small ready-made module which can record human voice for short time and then play it back. It is based on the ISD1820 IC which is a voice record and playback chip.

Table of Contents
  • Technical Specs (in simple words)
  • Buttons on Board:
  • Pin Description (on the module)
  • How to Use It Without Microcontroller
  • How to Connect with Arduino (if you want automation)
  • Speaker Advice
  • Some Ideas Where You Can Use ISD1820

This module is very popular for DIY projects where we want to make some talking gadget or voice-alarm,or greeting system, or even robot with talking feature.

Technical Specs (in simple words)

Recording Time: around 10 seconds (can be changed using resistor)

Voltage: Works on 3V to 5V (best is 5V from adapter or Arduino)

Microphone: Already included on the board

Speaker Output: Can directly connect 8Ω 0.5W to 1W speaker

ISD1820 Module

Buttons on Board:

REC → Press and hold to record

PLAYE → Press once to play full message

PLAYL → Press and hold to play, release to stop

LED Indicator: Shows when recording is happening.

Pin Description (on the module)

Pin NameWhat It Does
VCC+5V power input
GNDGround
RECRecord control (active HIGH)
PLAYEEdge-trigger playback (press once, it plays all)
PLAYLLevel-trigger playback (press and hold = play)
SP+ / SP-Speaker output
FTFeed-through (mic to speaker direct mode)
MICElectret microphone already fixed

How to Use It Without Microcontroller

ISD1820 module pinouts

Super simple steps:

Power It Up

Give +5V to VCC and GND to GND from any 5V source or battery or Arduino 5V pin.

Record Voice

Press and hold REC button, say something into the mic.

Release REC to stop recording.

Red LED will glow during recording.

Play Voice

Press PLAYE button once → It plays full recorded audio.

Press and hold PLAYL → It plays only when you hold, stops on release.

Speaker Connection

Connect small 8Ω speaker to SP+ and SP- pins.

How to Connect with Arduino (if you want automation)

If we want to use Arduino to trigger recording or playback, then we connect pins like this:

ISD1820 PinConnect to Arduino
VCC5V
GNDGND
RECDigital pin (e.g. 2)
PLAYEDigital pin (e.g. 3)
PLAYLOptional (e.g. pin 4)

Example code (for Arduino):

int rec = 2;
int play = 3;

void setup() {
  pinMode(rec, OUTPUT);
  pinMode(play, OUTPUT);
}

void loop() {
  // Record
  digitalWrite(rec, HIGH);
  delay(3000); // record for 3 sec
  digitalWrite(rec, LOW);
  delay(2000);

  // Play
  digitalWrite(play, HIGH);
  delay(500);
  digitalWrite(play, LOW);
  delay(5000);
}

Speaker Advice

  • Use 8 ohm 0.5 watt or 1 watt speaker only.
  • Do not use big speakers or audio amps here or chip may get damaged.
  • Sound quality is OK but not studio type – just for basic voice use.

Some Ideas Where You Can Use ISD1820

  • Talking robot
  • Voice-controlled greetings
  • Toy with pre-recorded voice
  • Motion-detection alarm with sound
  • Doorbell with custom voice
  • Voice reminder device

You'll also like:

  • 1.  How to Make a Dual Tone Siren Circuit
  • 2.  Single Transistor Radio Receiver Circuit
  • 3.  Listen to UHF and SHF (GHz) Bands with this Simple Circuit
  • 4.  Light Controlled Sound Effect Generator Circuit
  • 5.  Simplest Piezo Driver Circuit Explained
  • 6.  Guitar Jammer Circuit (Mix an External Audio with your Guitar)

About Swagatam

I am an electronics engineer with over 15 years of hands-on experience. I am passionate about inventing, designing electronic circuits and PCBs, and helping hobbyists bring their projects to life. That is why I founded homemade-circuits.com, a website where I share innovative circuit ideas and tutorials. Have a circuit related question? Leave a comment.... I guarantee a reply!

Previous Post: « What is T856-C Power Bank Module? How to Connect
Next Post: Programmable 35238-MP Timer Module? How to Use it »

Reader Interactions

Need Help? Please Leave a Comment! We value your input—Kindly keep it relevant to the above topic! Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Subscribe to New Circuit Ideas

Categories

  • Arduino Projects (87)
  • Audio and Amplifier Projects (132)
  • Automation Projects (17)
  • Automobile Electronics (101)
  • Battery Charger Circuits (83)
  • Datasheets and Components (104)
  • Electronics Theory (143)
  • Free Energy (37)
  • Games and Sports Projects (11)
  • Grid and 3-Phase (19)
  • Health related Projects (25)
  • Home Electrical Circuits (12)
  • Indicator Circuits (14)
  • Inverter Circuits (87)
  • Lamps and Lights (142)
  • Meters and Testers (69)
  • Mini Projects (46)
  • Motor Controller (64)
  • Oscillator Circuits (27)
  • Pets and Pests (15)
  • Power Supply Circuits (108)
  • Remote Control Circuits (50)
  • Security and Alarm (64)
  • Sensors and Detectors (101)
  • Solar Controller Circuits (59)
  • Temperature Controllers (42)
  • Timer and Delay Relay (49)
  • Transmitter Circuits (29)
  • Voltage Control and Protection (37)
  • Water Controller (36)

Calculators

  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator
  • Filter Capacitor Calculator
  • Buck Converter Calculator
  • Boost Converter Calculator
  • Solar Panel, Inverter, Battery Calculator
  • Wire Current Calculator
  • SMPS Transformer Calculator
  • IC SG3525, SG3524 Calculator
  • Inverter LC Filter Calculator

People Also Search

555 Circuits | 741 Circuits | LM324 Circuits | LM338 Circuits | 4017 Circuits | Ultrasonic Projects | SMPS Projects | Christmas Projects | MOSFETs | Radio Circuits | Laser Circuits | PIR Projects |

Recent Comments

  • Swagatam on 10 LED Tachometer Circuit Diagram
  • Swagatam on How Shunt Regulator TL431 Works, Datasheet, Application
  • Göran on 10 LED Tachometer Circuit Diagram
  • SA on How Shunt Regulator TL431 Works, Datasheet, Application
  • Swagatam on Adjustable 0-100V 50 Amp SMPS Circuit

Company

  • Privacy Policy
  • Cookie Policy
  • About Me
  • Contact
  • Disclaimer
  • Copyright
  • Videos
  • Sitemap

Social Profiles

  • Twitter
  • YouTube
  • Instagram
  • Pinterest
  • My Facebook-Page
  • Quora
  • Stack Exchange
  • Linkedin
  • © 2025 · Swagatam Innovations