rdagger / micropython-jq6500

MicroPython JQ6500 sound module library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MicroPython JQ6500 sound module library

lcd

A library to control a JQ6500 sound module in serial mode on an ESP32 or other compatible board running MicroPython.

Example:

from jq6500 import Player
p = Player(port=2)
p.set_volume(30)
p.play()
p.get_length()
p.clean_up()

Available methods:

  • get_equalizer
  • get_file_count
  • get_file_index
  • get_folder_count
  • get_length
  • get_looping
  • get_name
  • get_position
  • get_status
  • get_version
  • get_volume
  • next
  • next_folder
  • pause
  • play
  • play_by_index
  • play_by_number
  • play_pause
  • prev
  • prev_folder
  • restart
  • set_equalizer
  • set_looping
  • set_source
  • set_volume
  • sleep
  • volume_down
  • volume_up

Tutorial on my website Rototron or click picture below for a YouTube video:

JQ6500 Tutorial

Tested on ESP32 (Wemos Lolin32)

About

MicroPython JQ6500 sound module library

License:MIT License


Languages

Language:Python 100.0%