mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
97f3450621
Simplify the initialisation in the SSD1306Ascii driver, by removing some of the complex structures that were inherited from the library on which it is based. This should also allow it to compile on the ESP32 platform.
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
/* Based on Arduino SSD1306Ascii Library, Copyright (C) 2015 by William Greiman
|
|
* Modifications (C) 2021 Neil McKechnie
|
|
*
|
|
* This file is part of CommandStation-EX
|
|
*
|
|
* This Library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This Library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef SSD1306Ascii_h
|
|
#define SSD1306Ascii_h
|
|
|
|
#include "Arduino.h"
|
|
#include "FSH.h"
|
|
#include "LCDDisplay.h"
|
|
|
|
#include "I2CManager.h"
|
|
#include "DIAG.h"
|
|
|
|
// Uncomment to remove lower-case letters to save 108 bytes of flash
|
|
//#define NOLOWERCASE
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Constructor
|
|
class SSD1306AsciiWire : public LCDDisplay {
|
|
public:
|
|
|
|
// Constructor
|
|
SSD1306AsciiWire(int width, int height);
|
|
|
|
// Initialize the display controller.
|
|
void begin(uint8_t i2cAddr);
|
|
|
|
// Clear the display and set the cursor to (0, 0).
|
|
void clearNative() override;
|
|
|
|
// Set cursor to start of specified text line
|
|
void setRowNative(byte line) override;
|
|
|
|
// Write one character to OLED
|
|
size_t writeNative(uint8_t c) override;
|
|
|
|
bool isBusy() override { return requestBlock.isBusy(); }
|
|
|
|
private:
|
|
// Cursor column.
|
|
uint8_t m_col;
|
|
// Cursor RAM row.
|
|
uint8_t m_row;
|
|
// Display width.
|
|
uint8_t m_displayWidth;
|
|
// Display height.
|
|
uint8_t m_displayHeight;
|
|
// Column offset RAM to SEG.
|
|
uint8_t m_colOffset = 0;
|
|
// Current font.
|
|
const uint8_t* const m_font = System5x7;
|
|
|
|
// Only fixed size 5x7 fonts in a 6x8 cell are supported.
|
|
static const uint8_t fontWidth = 5;
|
|
static const uint8_t fontHeight = 7;
|
|
static const uint8_t letterSpacing = 1;
|
|
static const uint8_t m_fontFirstChar = 0x20;
|
|
static const uint8_t m_fontCharCount = 0x61;
|
|
|
|
uint8_t m_i2cAddr;
|
|
|
|
I2CRB requestBlock;
|
|
uint8_t outputBuffer[fontWidth+letterSpacing+1];
|
|
|
|
static const uint8_t blankPixels[];
|
|
|
|
static const uint8_t System5x7[];
|
|
static const uint8_t FLASH Adafruit128xXXinit[];
|
|
static const uint8_t FLASH SH1106_132x64init[];
|
|
};
|
|
|
|
#endif // SSD1306Ascii_h
|