1 Introduction
2 Feature
- Push‐button interface, playback can be edge or level activated
- Automatic power‐dwon mode
- On‐chip 8Ω speaker driver
- Signal 3V Power Supply
- Can be controlled both manually or by MCU
- Sample rate and duration changable by replacing a single resistor
- Record up to 20 seconds of audio
- Dimensions: 37 x 54 mm
Voice Record Module is base on ISD1820, which a multiple‐message record/playback device.
It can offers true single‐chip voice recording, no‐volatile storage, and playback capability for 8 to
20 seconds. The sample is 3.2k and the total 20s for the Recorder.
This module use is very easy which you could direct control by push button on board or by
Microcontroller such as Arduino, STM32, ChipKit etc. Frome these, you can easy control record ,
playback and repeat and so on.
2 Feature
- Push‐button interface, playback can be edge or level activated
- Automatic power‐dwon mode
- On‐chip 8Ω speaker driver
- Signal 3V Power Supply
- Can be controlled both manually or by MCU
- Sample rate and duration changable by replacing a single resistor
- Record up to 20 seconds of audio
- Dimensions: 37 x 54 mm
If you want change record duration, an external resistor is necessary to select the record
duration and sampling frequency, which can range from 8 – 20 seconds (4‐12kHz sampling
frequency). The Voice Record Module of our provide default connect 100k resistor by short cap.
So the default record duration is 10s.
1. VCC– 3.3V power supply
2. GND– Power ground
3. REC – The REC input is an active‐HIGH record signal. The module starts recording
whenever REC is HIGH. This pin must remain HIGH for the duration of the recording.
REC takes precedence over either playback(PLAYL or PLAYE) signal.
4. PLAYE – Playback, Edge‐activated: When a HIGH‐going transition is detected on
continues until an End‐of‐Message (EOM) marker is encountered or the end of the
memory space is reached.
5. PLAYL – Playback, Level‐activated, when this input pin level transits for LOW to HIGH, a
playback cycle is initiated.
6. Speaker Outputs – The SP+ and SP‐ pins provide direct drive for loudspeakers with
impedances as low as 8Ω.
7. MIC – Microphone Input, the microphone input transfers its signals to the on‐chip
preamplifier.
8. FT – Feed Through: This mode enable the Microphone to drive the speaker directly.
9. P‐E – Play the records endlessly.
Record Operate Guide
1. Push REC button then the RECLED will light and keep push until record end.
2. Release the REC button
3. Select Playback mode: PLAYE, just need push one time, and will playback all of the
record or power down ; PLAYL, you need always push this button until you want to stop
playback record or end ; When short P‐E jumper the record will playback time a time
until jumper off or power down
4. FT mode, when short FT jumper, that means all of you speak to MIC will direct playback
to Speaker.
Code :-
int Rec = 12; int Play = 13; void setup() { pinMode(Rec, OUTPUT); pinMode(Play, OUTPUT); } void loop() { digitalWrite(Rec, HIGH); delay(10000); digitalWrite(Rec, LOW); delay(1000); digitalWrite(Play, HIGH); delay(10000); digitalWrite(Play, LOW); delay(10000); }
Connections
Comments
Post a Comment