controlled by dip 3 with pitch modulated by the knob
#ifdef AUDIO_ENABLE
#define STARTUP_SONG SONG(PLANCK_SOUND)
+ #define AUDIO_CLICKY
#endif
/*
// Most tactile encoders have detents every 4 stages
#define ENCODER_RESOLUTION 4
+
uint16_t muse_tempo = 20;
void encoder_update(bool clockwise) {
+ if (is_clicky_on()) {
+ if (clockwise) {
+ clicky_freq_up();
+ } else {
+ clicky_freq_down();
+ }
+ } else
if (muse_mode) {
if (IS_LAYER_ON(_RAISE)) {
if (clockwise) {
stop_all_notes();
#endif
}
+ case 2:
+ if (active) {
+ clicky_on();
+ } else {
+ clicky_off();
+ }
}
}