28 lines
381 B
C
Raw Permalink Normal View History

2024-06-11 21:24:54 +02:00
#include "melody.h"
#include "sequencer.h"
const sequencerAction_t seq[] = {
CS(440, 15, 441, 15),
W(100),
CS(440, 15, 443, 15),
W(100),
CS(440, 15, 444, 15),
W(100),
CS(440, 15, 446, 15),
W(100),
CS(440, 15, 444, 15),
W(100),
CS(440, 15, 443, 15),
W(100),
CS(440, 15, 441, 15),
W(100),
R(),
E(),
};
void melodyInit() {
sequencerStart(seq);
}