Code Monkey home page Code Monkey logo

mbed-os-audioplayer's Introduction

An Audio Player for mbed-os

This library can be used to play audio on mbed-os devices with AnalogOut support.

Hardware setup

To play audio the AnalogOut pin of your board must be connect to the right circuitry. If you are connected to speakers using a headphone jack you can use a ~10:1 voltage divider (analog out to 9K ohm to 1K to ground is sufficient) to reduce the voltage to the correct level. You'll also need an electrolytic or ceramic capacitor in series to act as a DC filter (0.1uf or larger recommended).

Example usage

#include "mbed.h"

#include "SDBlockDevice.h"
#include "FATFileSystem.h"
#include "AudioPlayer.h"

SDBlockDevice sd(PTE3, PTE1, PTE2, PTE4);
FATFileSystem fs("sd", &sd);

AnalogOut aout(DAC0_OUT);
AudioPlayer player(&aout);

int main()
{
    // Set the maximum speed so it can keep up with audio
    sd.frequency(25000000);

    File file(&fs, "songs/my_song.wav");
    player.play(&file);
}

mbed-os-audioplayer's People

Contributors

c1728p9 avatar mrcoulter45 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

vketch

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.