Where I try playing a sample via PwmOutput

Dependencies:   LCD_ST7735 mbed

Reading some old ZX Spectrum forums, I wanted to check wether playing a sample was possible. So far, no, but there's more things to try.

Row.h

Committer:
loop
Date:
2015-03-08
Revision:
0:167d81d4f79f

File content as of revision 0:167d81d4f79f:

#pragma once

class Row {
    int pos;
    char steps[16];
    char* sound;

    public:
        Row(int _pos, char* _sound);
        void setPosVolume(int pos, int volume);
        int getPosVolume(int pos);
};