JQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ด

JQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ด
JQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ดJQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ดJQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ดJQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ดJQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ด
รหัสสินค้า SKU-00565
หมวดหมู่ โมดูลเสียง
ราคา 180.00 บาท
ลงสินค้า 16 ก.ย. 2565
อัพเดทล่าสุด 16 ก.ย. 2565
คงเหลือ 0 ชิ้น
เร็วๆนี้
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
JQ6500 MP3 Player Voice Sound Module UART โมดูลเล่นเพลง MP3 บันทึกข้อมูลได้ในตัวบอร์ด

๋JQ6500 สำหรับเล่นเพลง MP3 บันทึกข้อมูลได้ในตัว 
ถ้าเสียงไม่ยาวมาก แบบนี้เป็นวิธีที่ประหยัด และคุ้มค่ามากกว่าใช้ SD Card 


โมดูล JQ6500 เล่นเพลง MP3 แบบบันทึกข้อมุลได้ในตัวบอร์ด เก็บเพลงได้สูงสุด 2MB เมื่ออัพโหลดเพลงเข้าแล้ว สามารถทำงานควบคุมเล่นเพลงได้ โดยไม่ต้องมีวงจรเพิ่มเติม สามารถใช้ Arduino ควบคุมสั่งให้เล่นเพลงได้ทางการสื่อสารแบบ Uart ใช้ 2 ขาในการสั่งงาน 

มีวงจรขยายเสียงในตัวใช้ชิฟ HXJ8002 กำลังขับ 1-3W

JQ6500 is a serial chip to provide MP3, the perfect integrated MP3, WMV hard decoding. At the same time software support TF card driver, support the computer directly update spi flash content, support FAT16, FAT32 file system. Through a simple serial command to complete the playback of the specified music, and how to play music and other functions, without cumbersome the underlying operation, easy to use, stable and reliable is the biggest feature of this product. In addition, the chip is also a deep customization of products, designed for fixed voice playback in the field of low-cost solutions.
 
Features:
  • Support sampling rate (KHz): 8 / 11.025 / 12/16 / 22.05 / 24/32 / 44.1 / 48
  • 24-bit DAC output, dynamic range support 90dB, SNR support 85dB
  • Full support FAT16, FAT32 file system, the largest support 32G TF card, support 32G U disk, 64M bytes NORFLASH
  • A variety of control mode, parallel port control mode, serial port mode, AD button control mode
  • Broadcast language spots, you can pause the background music is playing
  • The audio data sorted by folder, up to 100 folders, every folder can be assigned 1000 songs
  • 30 level adjustable, 10 EQ adjustable
  • You can plug in SPI flash, connect the computer can display spi flash letter to update the content
  • Can be controlled through the microcontroller serial port to play the specified music
  • In the key mode, you can play mode selection: can be interrupted, can not be interrupted, single cycle, large cycle
  • Can be interrupted: that is, in the process of playing, press the button will interrupt the current state to perform the new
  • Can not be interrupted: that is, in the process of playing, press any button is invalid, until the end of the play to play the current effective
Application:
  • Car navigation voice broadcast 
  • Road transport inspection, toll station voice prompts
  • The train station, bus station security check voice prompts
  • Power, communications, financial business hall voice prompts
  • The vehicle into the channel verification voice prompts
  • Border check channel voice prompts
  • Multi-channel voice alarm or device operation to guide voice
  • Electric sightseeing car safe driving voice notice
  • Mechanical and electrical equipment failure automatic alarm
  • Fire-alarm
  • Automatic broadcast equipment, regular broadcast
ตัวอย่างการใช้งาน โมดูลเล่นเพลง MP3 JQ6500 เบื้องต้น 

1. .ให้ต่ออุปกรณ์ตามรูปด้านล่าง

Arduino -> โมดูลเล่นเพลง MP3 JQ6500

5V -> VCC
GND -> GND
ขา8 -> Tx
ขา9 -> Rx



2. ดาวน์โหลด Library JQ6500 ติดตั้งลง Arduino IDE



3. อัพโหลดโค้ดตัวอย่างลง บอร์ด Arduino

1
/** Bare minimum example sketch for MP3 player.
2
*
3
* Simply plays all tracks in a loop.
4
*
5
* @author James Sleeman, http://sparks.gogo.co.nz/
6
* @license MIT License
7
* @file
8
*/
9
 
10
#include <Arduino.h>
11
#include <SoftwareSerial.h>
12
#include <JQ6500_Serial.h>
13
 
14
// Create the mp3 module object,
15
// Arduino Pin 8 is connected to TX of the JQ6500
16
// Arduino Pin 9 is connected to one end of a 1k resistor,
17
// the other end of the 1k resistor is connected to RX of the JQ6500
18
// If your Arduino is 3v3 powered, you can omit the 1k series resistor
19
JQ6500_Serial mp3(8,9);
20
 
21
void setup() {
22
mp3.begin(9600);
23
mp3.reset();
24
mp3.setVolume(20);
25
mp3.setLoopMode(MP3_LOOP_ALL);
26
mp3.play();
27
}
28
 
29
void loop() {
30
// Do nothing, it's already playing and looping :-)

วิธีการชำระเงิน

ร้านค้านี้ยังไม่ได้กำหนดวิธีการชำระเงิน กรุณา ติดต่อกับทางร้าน เกี่ยวกับรายละเอียดในการชำระเงิน
ทางร้านยังไม่ได้ทำการเพิ่มบัญชีรับเงิน กรุณาติดต่อ เจ้าของร้าน

CATEGORY

MEMBER

STATISTIC

หน้าที่เข้าชม114,268 ครั้ง
ผู้ชมทั้งหมด51,030 ครั้ง
เปิดร้าน31 ก.ค. 2559
ร้านค้าอัพเดท4 ก.ย. 2568

CONTACT US

รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านบ้านโค้ด-Bancode
บ้านโค้ด-Bancode
จำหน่ายบอร์ดไมโครคอนโทรลเลอร์ Arduino,Module,Shield,Sensor,R,L,C,IC เเละอื่นๆ โทร.0624952525
เบอร์โทร : 0964188828
อีเมล : bancode.dev@gmail.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

TOP เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม