15 lines
273 B
C
15 lines
273 B
C
|
#ifndef U8G2_DISPLAY_H
|
||
|
#define U8G2_DISPLAY_H
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
#include <U8g2lib.h>
|
||
|
|
||
|
#define DISPLAY_SCL 26
|
||
|
#define DISPLAY_SDA 27
|
||
|
|
||
|
#define DISPLAY_WIDTH 128
|
||
|
#define DISPLAY_HEIGHT 64
|
||
|
|
||
|
void u8g2Display_Init(U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2);
|
||
|
|
||
|
#endif
|