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.

Committer:
loop
Date:
Sun Mar 08 21:51:59 2015 +0000
Revision:
0:167d81d4f79f
Initial Commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
loop 0:167d81d4f79f 1 #include "Row.h"
loop 0:167d81d4f79f 2
loop 0:167d81d4f79f 3 Row::Row(int _pos, char* _sound) {
loop 0:167d81d4f79f 4 pos = _pos;
loop 0:167d81d4f79f 5 sound = _sound;
loop 0:167d81d4f79f 6 }