{"id":35128851,"url":"https://github.com/ronibandini/dfr1173-voice-prompter","last_synced_at":"2026-04-20T16:03:25.593Z","repository":{"id":330286152,"uuid":"1122250236","full_name":"ronibandini/DFR1173-Voice-Prompter","owner":"ronibandini","description":"DFRobot DFR1173 Voice Prompter library","archived":false,"fork":false,"pushed_at":"2025-12-24T13:34:13.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-26T02:02:35.105Z","etag":null,"topics":["arduino","arduino-library","dfrobot","mp3","mp3-player","voice-prompter","wav"],"latest_commit_sha":null,"homepage":"https://bandini.medium.com/mp3-voice-prompter-sustituto-de-dfplayer-a865040a2aaf","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronibandini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-24T11:04:15.000Z","updated_at":"2025-12-24T14:24:28.000Z","dependencies_parsed_at":"2025-12-26T02:02:37.464Z","dependency_job_id":null,"html_url":"https://github.com/ronibandini/DFR1173-Voice-Prompter","commit_stats":null,"previous_names":["ronibandini/dfr1173-voice-prompter"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ronibandini/DFR1173-Voice-Prompter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronibandini%2FDFR1173-Voice-Prompter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronibandini%2FDFR1173-Voice-Prompter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronibandini%2FDFR1173-Voice-Prompter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronibandini%2FDFR1173-Voice-Prompter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronibandini","download_url":"https://codeload.github.com/ronibandini/DFR1173-Voice-Prompter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronibandini%2FDFR1173-Voice-Prompter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32054611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","arduino-library","dfrobot","mp3","mp3-player","voice-prompter","wav"],"created_at":"2025-12-28T04:26:15.842Z","updated_at":"2026-04-20T16:03:25.582Z","avatar_url":"https://github.com/ronibandini.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DFR1173 Voice Prompter Library\n\nArduino library designed to control the DFRobot DFR1173 MP3 Voice Prompter module through serial commands.\n\n## Device\n\nhttps://www.dfrobot.com/product-2862.html?tracking=hOuIhw4fDaJRTdy4abz04npbQC78dqxBkqVt7XMFYxEXj2s0ukWgm71wbut0ewUP\n\n## Features\n\n- Full playback control: Play, Pause, Resume, Stop.\n- Volume management (0-30).\n- Track and folder navigation.\n- Status verification support via BUSY pin.\n- Low power mode.\n\n\u003cimg width=\"977\" height=\"1192\" alt=\"VoicePrompter\" src=\"https://github.com/user-attachments/assets/4853c2be-8e7f-4f0e-923e-dd517a18c201\" /\u003e\n\n## Wiring (Arduino Nano R4)\n\n| DFR1173 Pin | Arduino Nano R4 Pin |\n|-------------|---------------------|\n| TX (Green)  | RX (D0)             |\n| RX (Yellow) | TX (D1)             |\n| BUSY        | D9 (Configurable)   |\n| VCC         | 5V                  |\n| GND         | GND                 |\n\n## Installation\n\n1. Download this repository as a .zip file.\n2. In the Arduino IDE, go to **Sketch -\u003e Include Library -\u003e Add .ZIP Library...**\n3. Select the downloaded file.\n\n## Basic Usage\n\n#include \u003cDFR1173.h\u003e\n\n// Instantiate passing the Serial object and the BUSY pin\nDFR1173 mp3(Serial1, 9);\n\nvoid setup() {\n  Serial.begin(115200);\n  mp3.begin(9600);\n  mp3.setVolume(25);\n}\n\nvoid loop() {\n  mp3.playTrack(1);\n  mp3.isPlaying(); // Blocks execution until audio finishes\n  delay(2000);\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronibandini%2Fdfr1173-voice-prompter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronibandini%2Fdfr1173-voice-prompter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronibandini%2Fdfr1173-voice-prompter/lists"}