- Added POGRAM CHANGES to switch Mode via MIDI
- Added Control Change to switch On/Off Pause Light
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
#include "pico/types.h"
|
||||
|
||||
#include "Mode_Manager.h"
|
||||
#include "EEPROM_M24C64.h"
|
||||
#include "Command_Definition.h"
|
||||
|
||||
@@ -34,10 +35,14 @@ void Core1_Light_Controller_Tick(void);
|
||||
void Core1_Light_Controller_MIDI_OnOff_Event_Received(uint8_t midi_command_shifted_right, uint8_t midi_channel);
|
||||
void Core1_Light_Controller_MIDI_Other_Event_Received(uint8_t midi_data);
|
||||
void Core1_Light_Controller_MIDI_Full_Note_Received(uint8_t midi_event, uint8_t midi_channel, uint8_t midi_note, uint8_t value);
|
||||
void Core1_Light_Controller_MIDI_Full_CC_Received(uint8_t midi_event, uint8_t midi_channel, uint8_t controller_number, uint8_t controller_value);
|
||||
void Core1_Light_Controller_MIDI_Full_ProgramChange_Received(uint8_t midi_event, uint8_t midi_channel, uint8_t program_number);
|
||||
void Core1_Light_Controller_MIDI_Full_ControlChange_Received(uint8_t midi_event, uint8_t midi_channel, uint8_t controller_number, uint8_t controller_value);
|
||||
|
||||
void Core1_Light_Controller_Set_MIDI_To_Light_Enabled(bool enabled);
|
||||
|
||||
Note_t Core1_Light_Controller_Get_Octave_Note_For_Channel(enum LED_Channel channel);
|
||||
Value_t Core1_Light_Controller_Get_Note_Value_For_Channel(enum LED_Channel channel);
|
||||
|
||||
bool Core1_Light_Controller_Get_Mode_Change_Received(enum LED_Channel channel);
|
||||
Mode Core1_Light_Controller_Get_Mode_Change_New_Mode(enum LED_Channel channel);
|
||||
#endif /* CORE1_LIGHT_CONTROLLER_H_ */
|
||||
|
||||
Reference in New Issue
Block a user