รหัสสินค้า | C08026 |
หมวดหมู่ | MP3 / เสียง / แอมป์ขยายเสียง / Buzzer |
ราคา | 85.00 บาท |
ขนาด | 1 |
ลงสินค้า | 9 ม.ค. 2566 |
อัพเดทล่าสุด | 14 พ.ค. 2568 |
ความพึงพอใจ | ยังไม่มีความคิดเห็น |
คงเหลือ | 0 ชิ้น |
ISD1820 Module Voice and Sound Record V2
Module สำหรับบันทึกเสียง และสามารถเล่นเสียงบันทึกได้ในตัว โดยสามารถบันทึกเสียงได้ 20 วินาที ISD1820 เป็นโมดูลสำหรับบันทึกเสียงและเล่นเสียง Ardiomp มันมีหน่วยประมวลผล DSP (Digital Signal Processor) สำหรับจัดการข้อมูลเสียง และมีบอดี้เซ็นเซอร์เสียงสำหรับรับสัญญาณเสียง โมดูลนี้ยังสามารถบันทึกเสียงไปยังหน่วยความจำออนบอร์ด (On-board Memory) และสามารถเล่นกลับมาอีกครั้งได้ นอกจากนี้ โมดูลยังสามารถเชื่อมต่อกับอุปกรณ์อื่นๆ เช่น ลำโพง ผ่านบอร์ดอินพุต (Input/Output pins) และมีสายเสียบอินพุตสำหรับเชื่อมต่อกับบอร์ดคอมพิวเตอร์ โดยทั่วไปแล้ว โมดูล ISD1820 มักจะใช้งานร่วม Arduino ได้อีกด้วย
The ISD1820 is a voice recording and playback module that is commonly used in electronic projects such as toys, interactive displays, and language learning systems. It is a simple and low-cost solution for adding voice recording and playback functionality to a project.
The module has a built-in microphone and speaker, and it can be controlled through a set of digital input and output pins. The module is capable of recording and playing back messages up to 10 seconds in length. It also has the ability to loop the recorded message indefinitely, or to play the message just once and then stop.
The module is powered by a 3.3V or 5V power supply, and it can be easily integrated into a project using a microcontroller or other control circuitry. Overall, the ISD1820 is a convenient and cost-effective way to add voice recording and playback capabilities to a wide range of electronic projects.
Here is a general outline of how to use the ISD1820 voice recording and playback module:
Connect the module to a power supply and a microcontroller or other control circuitry.
Use digital input pins to control the module's recording and playback functions. For example, you can use a push button to start and stop recording, or you can use a switch to initiate playback.
Use the built-in microphone to record a message. The module has a record time of up to 10 seconds.
Use digital output pins to control the module's playback mode. You can set the module to play the recorded message just once, or to loop the message indefinitely.
Use the built-in speaker to play back the recorded message.
You can also use the module's digital input and output pins to communicate with a microcontroller or other control circuitry, in order to implement more advanced functionality or to integrate the module into a larger system.
Here is an example of how you might use the module's input and output pins to control its recording and playback functions:
// Set up input and output pins
int recordButton = 2;
int playbackButton = 3;
int playbackModeSwitch = 4;void setup() {
// Initialize input and output pins
pinMode(recordButton, INPUT_PULLUP);
pinMode(playbackButton, INPUT_PULLUP);
pinMode(playbackModeSwitch, INPUT_PULLUP);
}void loop() {
// Check if record button is pressed
if (digitalRead(recordButton) == LOW) {
// Start recording
startRecording();
}// Check if playback button is pressed
if (digitalRead(playbackButton) == LOW) {
// Read playback mode switch to determine playback mode
int playbackMode = digitalRead(playbackModeSwitch);// Play back message in specified mode
if (playbackMode == LOW) {
// Play message once
playMessageOnce();
} else {
// Loop message indefinitely
loopMessage();
}
}
}
สินค้า 1 ชุดประกอบด้วย
หน้าที่เข้าชม | 4,510,768 ครั้ง |
ผู้ชมทั้งหมด | 2,466,540 ครั้ง |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |