- Fixed drawing of round objects (Circles, Rounded Rects) using a lookup table
- Added function to read out the display_buffer via USB-Serial - Added basic structure and files for later complete firmware (still in progress) - Added Doc folder with schematic in it - Added Python script and batch file to read out the display buffer and open the image in gimp
This commit is contained in:
33
Firmware/Core1_MIDI_Receiver.h
Normal file
33
Firmware/Core1_MIDI_Receiver.h
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Core1_MIDI_Receiver.h
|
||||
*
|
||||
* Created: Thu Jan 13 2022 15:34:59
|
||||
* Author Chris
|
||||
*/
|
||||
#ifndef CORE1_MIDI_RECEIVER_H_
|
||||
#define CORE1_MIDI_RECEIVER_H_
|
||||
|
||||
// ============================================================================================
|
||||
// Includes
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "pico/types.h"
|
||||
|
||||
#include "Core1_Light_Controller.h"
|
||||
|
||||
|
||||
// ============================================================================================
|
||||
// Defines
|
||||
|
||||
|
||||
// ============================================================================================
|
||||
// Datatypes
|
||||
|
||||
|
||||
// ============================================================================================
|
||||
// Function Declarations
|
||||
void Core1_MIDI_Receiver_Init(void);
|
||||
void Core1_MIDI_Receiver_Process(void);
|
||||
|
||||
#endif /* CORE1_MIDI_RECEIVER_H_ */
|
||||
Reference in New Issue
Block a user