eink/eink.hpp

162 lines
3.5 KiB
C++
Raw Normal View History

2022-05-26 15:11:00 +02:00
#pragma once
#include <stdint.h>
#include <avr/pgmspace.h>
#include "../clock.hpp"
#include "../io/io.hpp"
2022-05-26 16:03:38 +02:00
namespace eink {
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
template <uint16_t Width, uint16_t Height, typename Spi, io::P RstPin, io::P DcPin, io::P BusyPin>
class Eink {
struct Cmd {
static constexpr auto SW_RESET = uint8_t{0x12};
static constexpr auto DRIVER_OUTPUT_CONTROL = uint8_t{0x01};
static constexpr auto DATA_ENTRY_MODE = uint8_t{0x11};
static constexpr auto SET_RAM_X_ADDR_POSITIONS = uint8_t{0x44};
static constexpr auto SET_RAM_Y_ADDR_POSITIONS = uint8_t{0x45};
static constexpr auto BORDER_WAVEFORM_CONTROL = uint8_t{0x3C};
static constexpr auto READ_TEMPERATURE_SENSOR = uint8_t{0x18};
static constexpr auto SET_RAM_X_ADDR = uint8_t{0x4E};
static constexpr auto SET_RAM_Y_ADDR = uint8_t{0x4F};
static constexpr auto WRITE_RAM_BLACK = uint8_t{0x24};
static constexpr auto WRITE_RAM_RED = uint8_t{0x26};
static constexpr auto DISPLAY_UPDATE_CONTROL_2 = uint8_t{0x22};
static constexpr auto UPDATE_DISPLAY = uint8_t{0x20};
static constexpr auto DEEP_SLEEP_MODE = uint8_t{0x10};
};
2022-05-26 16:03:38 +02:00
static io::Pin<RstPin> m_rst;
static io::Pin<DcPin> m_dc;
static io::Pin<BusyPin> m_bsy;
2022-05-26 15:11:00 +02:00
public:
2022-05-26 16:03:38 +02:00
static void init()
2022-05-26 15:11:00 +02:00
{
m_rst.dir(io::Dir::OUT);
m_dc.dir(io::Dir::OUT);
m_bsy.dir(io::Dir::IN);
Spi::init();
2022-05-26 16:03:38 +02:00
reset();
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
waitUntilIdle();
sendCommand(Cmd::SW_RESET);
waitUntilIdle();
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::DRIVER_OUTPUT_CONTROL);
sendData(0xC7);
sendData(0x00);
sendData(0x01);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::DATA_ENTRY_MODE);
sendData(0x01);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::SET_RAM_X_ADDR_POSITIONS);
sendData(0x00);
sendData((Width / 8) - 1);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::SET_RAM_Y_ADDR_POSITIONS);
sendData(Height - 1);
sendData(0x00);
sendData(0x00);
sendData(0x00);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::BORDER_WAVEFORM_CONTROL);
sendData(0x05);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::READ_TEMPERATURE_SENSOR);
sendData(0x80);
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::SET_RAM_X_ADDR);
sendData(0x00);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::SET_RAM_Y_ADDR);
sendData(Height - 1);
sendData(0x00);
2022-05-26 15:11:00 +02:00
2022-05-26 16:03:38 +02:00
waitUntilIdle();
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
static void sendCommand(const uint8_t command)
2022-05-26 15:11:00 +02:00
{
m_dc = false;
2022-05-26 16:03:38 +02:00
spiTransfer(command);
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
static void sendData(const uint8_t data)
2022-05-26 15:11:00 +02:00
{
m_dc = true;
2022-05-26 16:03:38 +02:00
spiTransfer(data);
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
static void waitUntilIdle()
2022-05-26 15:11:00 +02:00
{
while (m_bsy) {
_delay_ms(100);
}
}
2022-05-26 16:03:38 +02:00
static void reset()
2022-05-26 15:11:00 +02:00
{
m_rst = true;
_delay_ms(200);
2022-05-26 16:03:38 +02:00
m_rst = false;
2022-05-26 15:11:00 +02:00
_delay_ms(10);
m_rst = true;
_delay_ms(200);
}
2022-05-26 16:03:38 +02:00
static void draw(const uint8_t *blackFrame, const uint8_t *redFrame)
2022-05-26 15:11:00 +02:00
{
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::WRITE_RAM_BLACK);
for (auto i = uint16_t{0}; i < Width * Height / 8; i++) {
sendData(pgm_read_byte(&blackFrame[i]));
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::WRITE_RAM_RED);
for (auto i = uint16_t{0}; i < Width * Height / 8; i++) {
sendData(~pgm_read_byte(&redFrame[i]));
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::DISPLAY_UPDATE_CONTROL_2);
sendData(0xF7);
sendCommand(Cmd::UPDATE_DISPLAY);
waitUntilIdle();
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
static void clear()
2022-05-26 15:11:00 +02:00
{
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::WRITE_RAM_BLACK);
for (auto i = uint16_t{0}; i < Width * Height / 8; i++) {
sendData(0xff);
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::WRITE_RAM_RED);
for (auto i = uint16_t{0}; i < Width * Height / 8; i++) {
sendData(0x00);
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::DISPLAY_UPDATE_CONTROL_2);
sendData(0xF7);
sendCommand(Cmd::UPDATE_DISPLAY);
waitUntilIdle();
2022-05-26 15:11:00 +02:00
}
2022-05-26 16:03:38 +02:00
static void sleep()
2022-05-26 15:11:00 +02:00
{
2022-05-26 16:03:38 +02:00
sendCommand(Cmd::DEEP_SLEEP_MODE);
sendData(0x01);
2022-05-26 15:11:00 +02:00
_delay_ms(100);
}
2022-05-26 16:03:38 +02:00
static void spiTransfer(const uint8_t data)
2022-05-26 15:11:00 +02:00
{
Spi::select(true);
Spi::transfer(data);
Spi::select(false);
}
};
2022-05-26 16:03:38 +02:00
} // namespace eink