LED-BOARD/src/panel.hpp

18 lines
239 B
C++
Raw Normal View History

#ifndef PANEL_HPP
#define PANEL_HPP
#include "image.hpp"
class Panel
{
public:
void init();
void send_image(Image* img);
private:
void clock();
void load();
void send_block(Image* p, int x, int y);
};
#endif