mirror of
https://github.com/Lemonochrme/clover.git
synced 2025-06-08 08:40:50 +02:00
10 lines
No EOL
178 B
C++
10 lines
No EOL
178 B
C++
#include <U8g2lib.h>
|
|
#include <Wire.h>
|
|
|
|
class Display {
|
|
public:
|
|
Display();
|
|
void loop();
|
|
private:
|
|
U8G2_SSD1306_128X64_NONAME_F_HW_I2C* _display;
|
|
}; |