Move all menu stuff into separate files

This commit is contained in:
John Stäck 2019-03-02 09:01:47 +01:00
parent 35ee03d4b8
commit c70858709e
3 changed files with 3724 additions and 3722 deletions

3723
NuEVI.ino

File diff suppressed because it is too large Load diff

33
menu.h Normal file
View file

@ -0,0 +1,33 @@
#ifndef __MENU_H
#define __MENU_H
//display states
#define DISPLAYOFF_IDL 0
#define MAIN_MENU 1
#define PATCH_VIEW 2
#define BREATH_ADJ_IDL 10
#define BREATH_ADJ_THR 11
#define BREATH_ADJ_MAX 12
#define PORTAM_ADJ_IDL 20
#define PORTAM_ADJ_THR 21
#define PORTAM_ADJ_MAX 22
#define PITCHB_ADJ_IDL 30
#define PITCHB_ADJ_THR 31
#define PITCHB_ADJ_MAX 32
#define EXTRAC_ADJ_IDL 40
#define EXTRAC_ADJ_THR 41
#define EXTRAC_ADJ_MAX 42
#define VIBRAT_ADJ_IDL 50
#define VIBRAT_ADJ_THR 51
#define VIBRAT_ADJ_DPT 52
#define CTOUCH_ADJ_IDL 60
#define CTOUCH_ADJ_THR 61
#define SETUP_BR_MENU 80
#define SETUP_CT_MENU 90
#define ROTATOR_MENU 100
#define VIBRATO_MENU 110
extern byte subVibSquelch;
#endif

3690
menu.ino Normal file

File diff suppressed because it is too large Load diff