20 lines
411 B
C
20 lines
411 B
C
#ifndef _OLED_DISPLAY_H_
|
|
#define _OLED_DISPLAY_H_
|
|
|
|
#include <Arduino.h>
|
|
#include <Wire.h>
|
|
#include <Adafruit_GFX.h>
|
|
#include <Adafruit_SSD1306.h>
|
|
#include "globals.h"
|
|
#include "config.h"
|
|
|
|
#define OLED_SDA 4
|
|
#define OLED_SCL 15
|
|
#define OLED_RST 16
|
|
#define SCREEN_WIDTH 128 // OLED display width, in pixels
|
|
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
|
|
|
|
void OLED_Init();
|
|
void OLED_Process();
|
|
|
|
#endif |