Isd1820 Recording Module Single Voice Board With On Board Mic And Loud Speaker
Rs. 84.00 Rs. 97.00
- Brand: http://www.nuvoton.com/
- Product Code: SEN-PLAYBACK
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
The main chip | ISD1820 |
Operating Voltage (V) | DC 3 ~ 5 |
Loudspeaker | 8 10, 0.5W |
Speaker Connecting Cable Length (cm) | 20 |
Speaker Diameter (mm) | 4000% |
Shipment Weight | 0.175 kg |
Shipment Dimensions | 8 × 6 × 3 cm |
OVERVIEW:
-The main chip: ISD1820.
-Operating Voltage: DC 3V-5V.
-Loudspeaker: 8Ω, 0.5W.
-An easy to use 10 seconds of voice recording.
-High-quality, natural voice restored.
-Can be used as a propaganda module.
-With looping, jog playback, single-pass play function.
PACKAGE INCLUDES:
1 PCS x Isd1820 Recording Module Single Voice Board With On Board Mic And Loud Speaker
1 PCS x Loud Speaker.
http://www.nuvoton.com/
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.electronicshub.org/interfacing-isd1820-voice-recorder-module-with-arduino/
int rec=2;
int play=3;
int sensor=4;
int led=13;
void setup()
{
pinMode(rec,OUTPUT);
pinMode(play,OUTPUT);
pinMode(led,OUTPUT);
pinMode(sensor,INPUT);
digitalWrite(rec,LOW);
digitalWrite(play,LOW);
digitalWrite(led,LOW);
if(digitalRead(sensor))
{
while(digitalRead(sensor));
}
}
void loop()
{
if(digitalRead(sensor))
{
digitalWrite(led,HIGH);
digitalWrite(rec,HIGH);
delay(5000);
digitalWrite(led,LOW);
digitalWrite(rec,LOW);
delay(1000);
digitalWrite(play,HIGH);
delay(6000);
digitalWrite(play,LOW);
while(digitalRead(sensor));
}
}
15 days