15 lines
246 B
C
15 lines
246 B
C
|
#ifndef SETTINGS_H_INCLUDED
|
||
|
#define SETTINGS_H_INCLUDED
|
||
|
#include <stdint.h>
|
||
|
#include "pot.h"
|
||
|
|
||
|
struct settings {
|
||
|
int levels[NUM_POTS];
|
||
|
#define master_vol levels[2]
|
||
|
int bpm;
|
||
|
int sequencer_on;
|
||
|
};
|
||
|
|
||
|
extern struct settings Settings;
|
||
|
#endif
|