Говорилка для авто на звуковом модуле ISD1820

Микросхемы простых звукогенераторов

General Instrument:

  • General Instrument AY-3-8910

Konami:

  • Konami SCC (также содержит схему управления расширенной памятью)

Konami SCC-I (SCC+, улучшенный вариант Konami SCC)
Konami VRC6 (также содержит схему управления расширенной памятью)
MOS Technology:

  • MOS Technology 6560 / 6561 «VIC» (видеоконтроллер, имеющий также схему генерации звука)

MOS Technology 6581 / 8580 «SID»
MOS Technology 7360 / 8360 «TED» (видеоконтроллер, имеющий также схему генерации звука)
Ricoh:

  • Ricoh 2A03 (выполнен на одном кристалле с 6502-совместимым процессором)

Philips:

  • Philips SAA1099

Texas Instruments:

  • Texas Instruments SN76477

Texas Instruments SN76489
Yamaha:

  • Yamaha YM2149F (аналог General Instrument AY-3-8910)

Arduino ISD1820 security system Programming:

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com

int P_E = 5;
int ldr = 6;
void setup() {

pinMode(P_E, INPUT_PULLUP);
pinMode(ldr, INPUT_PULLUP);
delay(5000);

}

void loop() {

if( digitalRead(ldr) == HIGH)
{
while(1)
{
digitalWrite(P_E, HIGH);
delay(100);
digitalWrite(P_E, LOW);
delay(1000);
}
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com
 

intP_E=5;

intldr=6;

voidsetup(){

pinMode(P_E,INPUT_PULLUP);

pinMode(ldr,INPUT_PULLUP);

delay(5000);

 
}
 

voidloop(){

if(digitalRead(ldr)==HIGH)

{

while(1)

{

digitalWrite(P_E,HIGH);

delay(100);

digitalWrite(P_E,LOW);

delay(1000);

}

}
}

As you can see the LDR module D0 pin is connected with the Arduino’s pin number 6. Using the if condition we check if the light falling on the LDR is blocked. So, if someone has blocked the light then the controls enter into an infinite while loop and play the voice message endlessly.

For the practical demonstration watch video available at the end.

About the ISD1820 Voice Recorder and Playback Module:

Говорилка для авто на звуковом модуле ISD1820

This is the ISD1820 Voice Recorder and Playback Module. This voice recorder module comes with a non-volatile storage and playback capability for 8 to 20 seconds. The recording time can be changed which I will discuss in a minute.

As you can see this voice recorder module is provided with push buttons which means you can directly or manually control this module. This voice recorder module is also provided with male headers due to which it can be interfaced with different types of controller modules such as Arduino, STM32, 8051 family of controllers, PIC microcontrollers and so on. This module is also provided with an On-chip audio amplifier that can drive a .5W 8-ohm speaker directly without the need for any external amplifier circuit.

Говорилка для авто на звуковом модуле ISD1820

This speaker is good for testing purposes but if you are planning to use this module in a real project then you will need to connect the output of this module to an external amplifier IC like for example LM386.

Говорилка для авто на звуковом модуле ISD1820

If you want to change the record duration, an external resistor is necessary to select the record duration and sampling frequency, which can range from 8 to 20 seconds. Currently, the record duration of this module is 10 seconds as this module by default comes with a 100k resistor ROSC. As per the datasheet, you can select any of these resistors to select a record duration of your choice.

Говорилка для авто на звуковом модуле ISD1820

By following this typical schematic you can also make this module by yourself.

ISD1820 Datasheet: isd1820 datasheet

Говорилка для авто на звуковом модуле ISD1820

This is the ISD1820 IC, a Microphone, this is where we connect the positive and ground wires of the speaker.

As you can see the three push buttons and male headers are clearly labeled as REC, PLAYE, PLAYL, VCC, GND, FT, P-L, P-E, and REC.

Подключение Arduino к ISD1820

Как было сказано ранее, модуль диктофона ISD1820 может работать независимо без какого-либо микроконтроллера. Но управление функцией записи и воспроизведения с помощью микроконтроллера, такого как, например, Arduino, дает вам возможность расширить функциональные возможности модуля до уровня сложных приложений.

Представьте себе ситуацию, когда вы разрабатываете систему безопасности, которая должна автоматически записывать голос при обнаружении движения. Это будет возможно, только если вы подключите модуль диктофона ISD1820 к Arduino (или к любому микроконтроллеру).

Схема подключения Arduino к ISD1820, а также к ИК-датчику и динамику для реализации такой простой сигнализации с записью голоса, показана ниже.

Говорилка для авто на звуковом модуле ISD1820

Контакты SP+ и SP- модуля ISD1820 подключены к клеммам динамика. VCC и GND модуля подключены к + 5V и GND. Контакты REC и PLAYE подключены к цифровым контактам 2 и 3 платы Arduino. Здесь используется инфракрасный датчик отражающего типа, а цифровой выход датчика подключен к выводу 4 платы Arduino.

ISD1820 Arduino Voice Record/Playback Tutorial

By
Sharath

Arduino

Like:

The Voice Record Module is based on the ISD1820 chip, a multiple‐message record/playback device.

It can offer true single‐chip voice recording, non-volatile storage, and playback capability for 8 to 20 seconds. The sample rate is between 8.0 KHz to 3.2 KHz for the duration of 8 to 20 Seconds for the Recorder.

This module use is very easy to use, which you could direct control by the push button on board or by Microcontroller such as Arduino, STM32, ChipKit etc.

Specifications

  • Push-button interface, playback can be edge or level activated
  • Automatic power-down mode
  • On-chip 8Ω speaker driver
  • Signal 3V Power Supply
  • Can be controlled both manually or by MCU
  • Sample rate and duration changeable 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 provides default connect 100k resistor by a short cap. So the default record duration is 10s.

ROSC Duration Sample Rate Bandwidth
80 KΩ 8 Sec 8.0 KHz 3.4 KHz
100 KΩ 10 Sec 6.4 KHz 2.6 KHz
120 KΩ 12 Sec 5.3 KHz 2.3 KHz
160 KΩ 16 Sec 4.0 KHz 1.7 KHz
200 KΩ 20 Sec 3.2 KHz 1.3 KHz
Популярные статьи  Как быстро обновить выцветший наружный пластик автомобиля

If you want to extend it to Speakers (High power), you can use LM386, D2283, D2322, TA7368, MC34119 etc amplifier IC.

Pinout

  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.
  4. REC takes precedence over either playback (PLAYL or PLAYE) signal.
  5. 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.
  6. PLAYL – Playback, Level‐activated, when this input pin level transits for LOW to HIGH, a playback cycle is initiated.
  7. Speaker Outputs – The SP+ and SP‐ pins provide a direct drive for loudspeakers with impedances as low as 8Ω.
  8. MIC – Microphone Input, the microphone input transfers its signals to the on‐chip preamplifier.
  9. FT – Feed Through: This mode enable the Microphone to drive the speaker directly.
  10. P‐E – Play the records endlessly.

You can control the Voice Recorder Module ISD1820 directly with onboard Buttons.

  • Connect VCC from ISD1820 to any 3V power supply. In our case, we have connected to 3.3V on Arduino
  • Connect GND to GND on Arduino.

Start using the Module!!

  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 records and until the pre-record sound end.
    • PLAYL, you need always push this button until you want to stop playback record or end.
  4. P-E mode, when short P‐E jumper the record will playback repeatedly until jumper off or power down.
  5. FT mode, when short FT jumper, that means all of you speak to MIC will direct playback to Speaker.

Leave a Message to your loved ones!!

In this tutorial, we will use IR Sensor, ISD1820 Voice Recorder and Arduino to record and leave a message.

  • When you wave across IR sensor it starts recording for 10 Seconds.
  • When PLAYE button on the Voice Recorder is pressed it playbacks the recorded voice.

Circuit Connection:

IR Sensor Arduino
VCC 5 V
GND GND
OUT 11
ISD1820 Voice Recorder Arduino
VCC 3.3 V
GND GND
REC 8
P-E 9
P-L 10

Circuit Diagram:

Code:

#define IR  11

#define REC 8

#define PLAYE 9

#define PLAYL 10



void setup(){

 pinMode(IR, INPUT);

 pinMode(REC, OUTPUT);

 Serial.begin(9600);

}



void loop(){

 int i = digitalRead(IR);

 if(i == 0)

 {

   Serial.println("Someone's here!!");

   digitalWrite(REC, 1);

   delay(10000);

   digitalWrite(REC, 0);

    delay(1000);

    digitalWrite(PLAYE, 1);

   delay(10000);

   digitalWrite(PLAYE, 0);

 }

}

Код программы взаимодействия Arduino и ISD1820

Выполните подключения согласно электрической схеме и подайте питание на цепь. Когда перед ИК-датчиком нет объекта, его выход будет в низком логическом состянии, и Arduino ничего не будет делать. Когда перед ИК-датчиком появится какой-либо объект, его выходной сигнал переходит в высокий логический уровень, и Arduino начинает запись сообщения, переводя вывод REC в высокое логическое состояние и поддерживая его в течение примерно 5 секунд. В течение этого времени светодиод, подключенный к контакту 13, будет светиться, чтобы указать, что модуль записывает сообщение. После записи, сообщение воспроизводится посредством перевода вывода PLAYE в высокое логическое состояние и его поддержания в течение примерно 6 секунд.

digitrode.ru

Car Accident Detection and voice message Arduino programming:

//Arduino ISD1820 Voice Recorder
int P_E = 5;

float cf = 190.5; // 19.5 calibration factor
int ffs1 = A0; // FlexiForce sensor is connected analog pin A0 of Arduino or mega.

int ffsdata = 0;
float vout;
void setup()
{
Serial.begin(9600);
pinMode(ffs1, INPUT);
pinMode(P_E, INPUT_PULLUP);

}

void loop()
{

ffsdata = analogRead(ffs1);
vout = (ffsdata * 5.0) / 1023.0;
vout = vout * cf ;
Serial.print(«Flexi Force sensor: «);
Serial.print(vout);
Serial.println(«»);
delay(100);

if ( vout >= 3 )
{
while(1)
{
digitalWrite(P_E, HIGH);
delay(100);
digitalWrite(P_E, LOW);
delay(1000);
}
}

}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

//Arduino ISD1820 Voice Recorder

intP_E=5;

floatcf=190.5;// 19.5 calibration factor

intffs1=A0;// FlexiForce sensor is connected analog pin A0 of Arduino or mega.

intffsdata=;

floatvout;

voidsetup()

{

Serial.begin(9600);

pinMode(ffs1,INPUT);

pinMode(P_E,INPUT_PULLUP);

}
 

voidloop()

{

ffsdata=analogRead(ffs1);

vout=(ffsdata *5.0)1023.0;

vout=vout *cf;

Serial.print(«Flexi Force sensor: «);

Serial.print(vout);

Serial.println(«»);

delay(100);

if(vout>=3)

{

while(1)

{

digitalWrite(P_E,HIGH);

delay(100);

digitalWrite(P_E,LOW);

delay(1000);

}

}
 
 
}

I am using the same Arduino pin number 5. Rest of the programming I have already explained in the FlexiForce getting started tutorial, in the code I did a little modification, I added the if condition which means if the force value is greater than or equal to 3 then enter into an infinite while loop which plays the voice message again and again.

For the practical demonstration, watch video give at the end of this article.

Arduino ISD1820 Programming:

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com

int P_E = 5;

void setup() {

pinMode(P_E, INPUT_PULLUP);
delay(5000);

}

void loop() {

digitalWrite(P_E, HIGH);
delay(100);
digitalWrite(P_E, LOW);
delay(1000);

}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com
 

intP_E=5;

voidsetup(){

pinMode(P_E,INPUT_PULLUP);

delay(5000);

 
}
 

voidloop(){

digitalWrite(P_E,HIGH);

delay(100);

digitalWrite(P_E,LOW);

delay(1000);

 
}

Arduino ISD1820 program explanation:

For the ISD1820 Voice recorder module, you don’t need any library. As you can see the P_E pin of the voice recorder module is connected with the Arduino’s pin number 5. The pin is set as the input using the pinMode() function. Now to play a voice message endlessly you need to change the pin status.

Now let’s make this a little bit complex by making a hit detection system for a car. So, when a hit is detected a voice message will be played endlessly.

ISD1820 Welcome Voice Message Arduino Programming:

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com

int P_E = 5;
int reed_sensor = 6;
void setup() {

pinMode(P_E, INPUT_PULLUP);
pinMode(reed_sensor, INPUT_PULLUP);
delay(5000);

}

void loop() {

if( digitalRead(reed_sensor) == LOW)
{

digitalWrite(P_E, LOW);
delay(1000);
}
if( digitalRead(reed_sensor) == HIGH)
{

digitalWrite(P_E, HIGH);
delay(1000);

}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

// Arduino ISD1820 Voice Recorder & Playback Module
// electroniclinic.com
 

intP_E=5;

intreed_sensor=6;

voidsetup(){

pinMode(P_E,INPUT_PULLUP);

pinMode(reed_sensor,INPUT_PULLUP);

delay(5000);

 
}
 

voidloop(){

if(digitalRead(reed_sensor)==LOW)

{
 

digitalWrite(P_E,LOW);

delay(1000);

}

if(digitalRead(reed_sensor)==HIGH)

{
 

digitalWrite(P_E,HIGH);

delay(1000);

 
}
}

Популярные статьи  Модель Morback_F3P 4D вариант второй

This is the same program, this time I only changed the pin name from the LDR to reed_sensor, and I deleted the infinite while loop. I am using two if the conditions to check if the door is closed or the door is opened. This way the voice message is played only one time when the door is opened. To play the same message again, first, the door should be closed and then open again.

This project can be used in offices, where multiple messages can be played depending on the situation. The controller programming remains the same. Different voice messages can be recorded. Each time the door is opened a message will be played only one time. This is practically demonstrated in the video given below.

Description

Говорилка для авто на звуковом модуле ISD1820

Arduino ISD1820 Voice Recorder & Playback Module- In this tutorial, you will learn how to interface the ISD1820 Voice Recorder and Playback Module with Arduino and play different recorded messages using different Sensors. In this tutorial, we will cover both the manual and automatic control of the ISD1820 Module.

There are situations when you need to play a specific recorded voice message depending on the situation. Like for example, in case if someone ends up in a car accident when a sensor detects a strong hit a pre-recorded voice message is played endlessly.

The ISD1820 Voice Recorder and Playback Module can also be used in Security based projects. When an intruder is detected a voice message is played endlessly.

The ISD1820 module can be used in offices where you need to play different voice messages, for example when someone opens the door; a welcome message is played only one time.

If it’s a break time you can record a new message, now this time if someone opens the door the break time voice message will be played. You can record different messages depending on the situation.

Without any further delay let’s get started!!!

Amazon Purchase Links:

Purchase from DigitSpace ISD1820:

Other Tools and Components:

*Please Note: These are affiliate links. I may make a commission if you buy the components through these links. I would appreciate your support in this way!

ISD1820 manual control:

Говорилка для авто на звуковом модуле ISD1820

First, let’s check how this module can be manually controlled. Connect 5 volts and ground from the Arduino or a power supply with the VCC and ground pins. Now press the record button and start talking. To play the entire voice message press PLAYE. You need to push and hold the PLAYL button and the message starts playing and if you want to stop the playback at any time, simply release the button.

During the testing, it was hard to hear anything. The .5w 8-ohm speaker is not going to work in real projects, so, before I am going to explain how this module can be automatically controlled using Arduino and sensors, first I replaced the .5w 8-ohm speaker with the external speakers powered up using a 12 volts power supply.

Говорилка для авто на звуковом модуле ISD1820

I played the same message again, and this time it was pretty cool. You can even use very high power speakers, so far you are able to provide the desired power needed for the speakers.

Говорилка для авто на звуковом модуле ISD1820

While using the ISD1820 manually, you don’t need the Arduino or any other controller board. All you need is the 5 volts power supply. In the picture above, I am only using the Arduino to power up the ISD1820 Voice Recorder and Playback Module.

Datasheet Download — ETC

Номер произв ISD1820
Описание Voice Record Module
Производители ETC
логотип  
1Page

No Preview Available !

Говорилка для авто на звуковом модуле ISD1820

ISD1820

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.
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 through P2 by short cap. So the default record
duration is 10s.
Free Datasheet http://www.nDatasheet.com

Говорилка для авто на звуковом модуле ISD1820

No Preview Available !

Говорилка для авто на звуковом модуле ISD1820

1. 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.

2. REC – The REC input is an active-HIGH record signal.The device records 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.

3. Speaker Outputs – The SP+ and SP- pins provide direct drive for loudspeakers with impedances

as low as 8Ω.

4. MIC – Microphone Input, the microphone input transfers its signals to the on-chip preamplifier.

5. REPLAY – loop play the record.

6. FT – Feed Through: This mode allows use of the speaker drivers for external signals.

7. ISD1820 – IC chip

8. Lead Out IO – VCC LED NC FT GND / VCC REC PLAYE PLAYL GND

9. P2 – default short connection ROSC to 100kΩ resistance, that’s means record duration is 10s

10. PLAYL – Playback, Level-activated, when this input pin level transits for LOW to HIGH, a

playback cycle is initiated.
Record Operate Guide
1. Push REC button then the RECLED(D1) 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

Free Datasheet http://www.nDatasheet.com

No Preview Available !

Говорилка для авто на звуковом модуле ISD1820

end ; REPEAT, switch 5 to right side, and the record will playback time a time until switch to light

or power down
4. FT mode, when you switch 6 to right side, that means all of you speak to MIC will direct playback
from Speaker.
Example
We can build a Auto PIR Alarm small project. We have record a short alert tone in Voice record module.

Then we control PIR Sensor and Voice record module by Freaduino ATMage328. Of course you can

also use PIR and record function. Use your imagination.
Programming Demo code like :
/*********************************************************************
** Device: ISD1820 **
** File: EF_Alert.c **
** **
** Created by ElecFreaks Robi.W /14 Nov 2011 **
** **
** Description: **
** This file is alert demo code base on PIR sensor and ISD1820 **
** Voice record module, just a sample code for your reference. **
** **
** Copyright (C) 2011 ElecFreaks Corp. **
** http://www.elecfreaks.com **
*********************************************************************/
Free Datasheet http://www.nDatasheet.com

Всего страниц 5 Pages
Скачать PDF
Популярные статьи  Журнал «Делаем сами» №4 апрель 2008

Модуль ISD1820

Модуль диктофона ISD1820 основан на микросхеме ISD1820, которая представляет собой однокристальную ИС диктофона для записи и воспроизведения отдельных сообщений. Главная особенность модуля диктофона ISD1820 заключается в том, что он может хранить сообщения в своей энергонезависимой памяти и может быть сконфигурирован для хранения сообщений длиной от 8 секунд до 20 секунд.

Модуль диктофона ISD1820, используемый в этом проекте, показан ниже. Как видите, на плате много компонентов, которые помогают микросхеме ISD1820 в записи и воспроизведении.

Говорилка для авто на звуковом модуле ISD1820

Еще одной главной особенностью этого модуля является то, что он имеет встроенный аудиоусилитель, который может управлять динамиком 0,5 Вт 8 Ом напрямую, без необходимости использования какой-либо внешней схемы усилителя. Но если вы хотите подключить более мощные динамики, вы можете подключить выход этого модуля к ИС внешнего усилителя, например, LM386.

Как работать с модулем ISD1820? Подключите небольшой 8-Омный динамик к выходу модуля, то есть через контакты SP+ и SP-. Нажмите кнопку записи (REC) на модуле, и модуль начнет запись. Продолжайте удерживать нажатой кнопку до тех пор, пока не запишите полное сообщение (например, около 10 секунд). Для воспроизведения вы можете использовать PLAYE или PLAYL. Нажмите кнопку PLAYE один раз, и все сообщение будет воспроизведено. Вам нужно нажать и удерживать кнопку PLAYL, и сообщение начнет воспроизводиться, и, если вы хотите остановить воспроизведение в любой момент, отпустите кнопку. Если вы активируете перемычку PE, воспроизведение происходит в режиме бесконечного цикла.

TDA7318

Четырехканальный звуковой процессор TDA7318 с цифровым управлением по шине I2C применяется в аудиоаппаратуре широкого применения.

Основные характеристики и выполняемые функции

  • В его составе встроен входной селектор звуковых сигналов (мультиплексор) 4 к 1 (стерео) с регулируемым предварительным усилителем.
  • Выход на два стереоканала (фронтальный и тыловой).
  • Предусмотрена регулировка громкости с шагом 1,25 дБ.
  • Предусмотрена раздельная регулировка уровня вью ких и низких частот.
  • Предусмотрена возможность раздельной регулиров ки громкости для правого и левого каналов, для фронта и тыла.
  • Управление процессора производится по последовательной цифровой шине I2C.

Микросхема выполнена в корпусе DIP-28. Блок-схема процессора представлена на рис. 3. Расположение выводов микросхемы показано на рис. 4.

Назначение выводов микросхемы представлено в табл. 4.

Талбица 4

№ вывода Сигнал Описание
1 CREF Цепь внешней коррекции
2 VDD Напряжение питания
3 GND Общий
4 TREBLEL Цепь коррекции верхних частот левого канала
5 TREBLE R Цепь коррекции верхних частот правого канала
6 IN(R) Вход (правый канал)
7 OUT(R) Выход мультиплексора (правый канал)
8 RIGHT INPUT 4 Вход мультиплексора 4(правый канал)
9 RIGHT INPUT 3 Вход мультиплексора 3 (правый канал)
10 RIGHT INPUT 2 Вход мультиплексора 2(правый канал)
11 RIGHT INPUT 1 Вход мультиплексора 1 (правый канал)
12 LEFT INPUT 4 Вход мультиплексора 4(левый канал)
13 LEFT INPUT 3 Вход мультиплексора 3 (левый канал)
14 LEFT INPUT 2 Вход мультиплексора 2(левый канал)
15 LEFT INPUT 1 Вход мультиплексора 1 (левый канал)
16 IN(L) Вход (левый канал)
17 OUT(L) Выход мультиплексора (левый канал)
18 BASS BIN(L) Цепь коррекции нижних частот (левый канал)
19 BASS BOUT(L) Цепь коррекции нижних частот (левый канал)
20 BASS BIN(R) Цепь коррекции нижних частот (правый канал)
21 BASS BOUT(R) Цепь коррекции нижних частот (правый канал)
22 OUT RR Выход, тыловой правый канал
23 OUT LR Выход, тыловой левый канал
24 OUT RF Выход, фронтальный правый канал
25 OUT LF Выход, фронтальный левый канал
26 BUS DIG GND Общий интерфейса I2С
27 BUS SCL Линия синхронизации интерфейса I2С
28 BUS SDA Линия данных интерфейса I2C

Говорилка для авто на звуковом модуле ISD1820

Рис. 3

Говорилка для авто на звуковом модуле ISD1820

Рис. 4

Если на вход процессора подается сигнал только от одного источника (не требуется использование входного мультиплексора), то элементы С1-С8 исключают, а сигнал подают на левые (по схеме на рис. 3) выводы конденсаторов C10 и С11, которые отключают соответственно от выв. 7 и 17 микросхемы.

Электрические параметры

Коэффициент нелинейных искажений на частоте 1 кГц,% 0,01
Отношение сигнал/шум, дБ 106
Разделение каналов на частоте 1 кГц, дБ 100
Уровень сигнала на выходе в режиме MUTE, дБ -100
Шаг регулировки уровня выходного сигнала, дБ 1,25
Диапазон регулировки уровня выходного сигнала, дБ -78,5…0
Шаг регулировки тембра, дБ 2
Диапазон регулировки тембра на нижних и верхних частотах, дБ ±14
Шаг регулировки баланса, дБ 1,25
Диапазон регулировки баланса и смещения, дБ -38,75…0
Шаг регулировки коэффициента усиления входного селектора, дБ 6,25
Диапазон регулировки коэффициента усиления входного селектора, дБ 0…18,75
Входное сопротивление (входы селектора), кОм 50
Входное сопротивление (входы регулятора), кОм 33
Диапазон регулировки громкости, дБ 75
Сопротивление нагрузки на выходе, не менее, кОм 2
Предельно-допустимые параметры
Питающее напряжение, В 6…10
Потребляемый ток, мА 4…11
Максимальный уровень входного сигнала, В 2
Температура окружающей среды, °С -40…85
Оцените статью
Денис Серебряков
Добавить комментарии

;-) :| :x :twisted: :smile: :shock: :sad: :roll: :razz: :oops: :o :mrgreen: :lol: :idea: :grin: :evil: :cry: :cool: :arrow: :???: :?: :!:

Говорилка для авто на звуковом модуле ISD1820
Мимоза