device-epd/src/display.cpp

94 lines
2.3 KiB
C++
Raw Normal View History

2020-02-10 14:29:39 +00:00
#include <Arduino.h>
#include "display.h"
// mapping suggestion for ESP32, e.g. LOLIN32, see .../variants/.../pins_arduino.h for your board
// NOTE: there are variants with different pins for SPI ! CHECK SPI PINS OF YOUR BOARD
2020-02-10 22:14:54 +00:00
// BUSY -> 4, RST -> 16, DC -> 17, CS -> SS(5), CLK -> (18), DIN -> MOSI(23), GND -> GND, 3.3V -> 3.3V
2020-02-10 14:29:39 +00:00
// mapping of Waveshare Universal e-Paper Raw Panel Driver Shield for Arduino / NUCLEO
// BUSY -> 7, RST -> 8, DC -> 9, CS-> 10, CLK -> 13, DIN -> 11
// base class GxEPD2_GFX can be used to pass references or pointers to the display instance as parameter, uses ~1.2k more code
// enable or disable GxEPD2_GFX base class
#define ENABLE_GxEPD2_GFX 0
2020-02-10 22:14:54 +00:00
GxEPD2_BW<GxEPD2_750, GxEPD2_750::HEIGHT> display(GxEPD2_750(/*CS=*/ 5, /*DC=*/ 17, /*RST=*/ 16, /*BUSY=*/ 4));
uint8_t _buffer[(GxEPD2_750::WIDTH / 8) * GxEPD2_750::HEIGHT];
2020-02-10 14:29:39 +00:00
void setupDisplay()
{
Serial.println("setupDisplay");
delay(100);
display.init(115200);
Serial.println("setup done");
}
2020-02-10 22:14:54 +00:00
void displayOpenFramebuffer()
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
memset(_buffer, 0, sizeof(_buffer));
//display.setFullWindow();
//display.firstPage();
//display.fillScreen(GxEPD_WHITE);
2020-02-10 14:29:39 +00:00
}
2020-02-10 22:14:54 +00:00
// TODO
void displayWriteFramebuffer(int offset, uint8_t bitmap[], int c)
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
for (int i = 0; i < c; i++)
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
_buffer[offset] = bitmap[i];
offset++;
2020-02-10 14:29:39 +00:00
}
2020-02-10 22:14:54 +00:00
/*
//if (offset + sizeof(*bitmap) <= sizeof(_buffer))
if (true)
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
memcpy((&_buffer) + offset, bitmap, 128);
2020-02-10 14:29:39 +00:00
}
else
{
2020-02-10 22:14:54 +00:00
Serial.println("!!!!! displayWriteFramebuffer overflow");
2020-02-10 14:29:39 +00:00
}
2020-02-10 22:14:54 +00:00
*/
2020-02-10 14:29:39 +00:00
}
2020-02-10 22:14:54 +00:00
void displayFlushFramebuffer()
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
Serial.println("displayFlushFramebuffer");
display.setRotation(0);
display.setFullWindow();
2020-02-10 14:29:39 +00:00
display.firstPage();
2020-02-10 22:14:54 +00:00
display.fillScreen(GxEPD_WHITE);
display.drawInvertedBitmap(0, 0, _buffer, display.epd2.WIDTH, display.epd2.HEIGHT, GxEPD_BLACK);
display.nextPage();
2020-02-10 14:29:39 +00:00
}
2020-02-10 22:14:54 +00:00
void printSplash()
2020-02-10 14:29:39 +00:00
{
2020-02-10 22:14:54 +00:00
const char Hello[] = "Hello Paperdash!";
2020-02-10 14:29:39 +00:00
display.setRotation(1);
display.setFont(&FreeMonoBold9pt7b);
display.setTextColor(GxEPD_BLACK);
int16_t tbx, tby;
uint16_t tbw, tbh;
2020-02-10 22:14:54 +00:00
display.getTextBounds(Hello, 0, 0, &tbx, &tby, &tbw, &tbh);
// center bounding box by transposition of origin:
2020-02-10 14:29:39 +00:00
uint16_t x = ((display.width() - tbw) / 2) - tbx;
uint16_t y = ((display.height() - tbh) / 2) - tby;
display.setFullWindow();
display.firstPage();
do
{
display.fillScreen(GxEPD_WHITE);
display.setCursor(x, y);
2020-02-10 22:14:54 +00:00
display.print(Hello);
2020-02-10 14:29:39 +00:00
} while (display.nextPage());
2020-02-10 22:14:54 +00:00
}