eurorack/midi2cv/drivers/display.h

24 lines
379 B
C
Raw Normal View History

#ifndef MIDI2CV_DRIVERS_DISPLAY_H
#define MIDI2CV_DRIVERS_DISPLAY_H
#include "stmlib/stmlib.h"
#include <stm32f37x_conf.h>
2019-09-19 14:41:32 +00:00
#include <u8g2.h>
class Display {
public:
Display() {}
~Display() {}
void Init();
u8g2_t* u8g2();
void Flush();
void Swap();
private:
DISALLOW_COPY_AND_ASSIGN(Display);
void InitGLib();
};
2019-09-19 14:41:32 +00:00
extern Display display;
#endif