eurorack/midi2cv/drivers/gpio.h

22 lines
259 B
C
Raw Normal View History

2019-08-30 09:15:00 +00:00
#ifndef MIDI2CV_DRIVERS_GPIO_H
#define MIDI2CV_DRIVERS_GPIO_H
#include "stmlib/stmlib.h"
class GPIO {
public:
GPIO() { }
~GPIO() {}
void Init();
2020-03-02 23:26:52 +00:00
void Write();
2019-08-30 09:15:00 +00:00
private:
DISALLOW_COPY_AND_ASSIGN(GPIO);
};
extern GPIO gpio;
2019-08-30 09:15:00 +00:00
#endif