Where I try playing a sample via PwmOutput

Dependencies:   LCD_ST7735 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Row.h Source File

Row.h

00001 #pragma once
00002 
00003 class Row {
00004     int pos;
00005     char steps[16];
00006     char* sound;
00007 
00008     public:
00009         Row(int _pos, char* _sound);
00010         void setPosVolume(int pos, int volume);
00011         int getPosVolume(int pos);
00012 };