2016-05-06 23:03:39 +00:00
|
|
|
/*
|
2020-05-02 19:42:54 +00:00
|
|
|
* Copyright (C) 2016,2017,2018,2020 by Jonathan Naylor G4KLX
|
2016-05-06 23:03:39 +00:00
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(OLED_H)
|
|
|
|
#define OLED_H
|
|
|
|
|
|
|
|
#include "Display.h"
|
|
|
|
#include "Defines.h"
|
2020-09-24 10:58:10 +00:00
|
|
|
#include "UserDBentry.h"
|
2020-11-17 16:56:12 +00:00
|
|
|
#include "I2CPort.h"
|
2016-05-06 23:03:39 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-05-10 15:24:35 +00:00
|
|
|
class COLED : public CDisplay
|
2016-05-06 23:03:39 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-11-17 16:56:12 +00:00
|
|
|
COLED(II2CPort* port, unsigned char displayType, unsigned char displayBrighness, bool displayInvert, bool displayScroll, bool displayRotate, bool displayLogoScreensaver, bool slot1Enabled, bool slot2Enabled);
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual ~COLED();
|
2016-05-06 23:03:39 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual bool open();
|
2016-05-06 23:03:39 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void setIdleInt();
|
2016-05-06 23:03:39 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void setErrorInt(const char* text);
|
|
|
|
virtual void setLockoutInt();
|
|
|
|
virtual void setQuitInt();
|
|
|
|
virtual void setFMInt();
|
2018-08-15 16:17:42 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector);
|
|
|
|
virtual void clearDStarInt();
|
2016-05-06 23:03:39 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type);
|
|
|
|
virtual int writeDMRIntEx(unsigned int slotNo, const class CUserDBentry& src, bool group, const std::string& dst, const char* type);
|
|
|
|
virtual void clearDMRInt(unsigned int slotNo);
|
2016-05-06 23:03:39 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeFusionInt(const char* source, const char* dest, unsigned char dgid, const char* type, const char* origin);
|
|
|
|
virtual void clearFusionInt();
|
2016-09-12 17:12:32 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeP25Int(const char* source, bool group, unsigned int dest, const char* type);
|
|
|
|
virtual void clearP25Int();
|
2020-11-16 16:56:36 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeNXDNInt(const char* source, bool group, unsigned int dest, const char* type);
|
|
|
|
virtual int writeNXDNIntEx(const class CUserDBentry& source, bool group, unsigned int dest, const char* type);
|
|
|
|
virtual void clearNXDNInt();
|
2018-01-17 19:04:00 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeM17Int(const char* source, const char* dest, const char* type);
|
|
|
|
virtual void clearM17Int();
|
2020-11-13 16:01:46 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writePOCSAGInt(uint32_t ric, const std::string& message);
|
|
|
|
virtual void clearPOCSAGInt();
|
2018-06-13 10:54:02 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void writeCWInt();
|
|
|
|
virtual void clearCWInt();
|
2016-10-19 18:57:37 +00:00
|
|
|
|
2020-11-17 12:06:10 +00:00
|
|
|
virtual void close();
|
2016-05-06 23:03:39 +00:00
|
|
|
|
|
|
|
private:
|
2020-11-17 16:56:12 +00:00
|
|
|
II2CPort* m_port;
|
2020-11-17 15:30:59 +00:00
|
|
|
unsigned char m_mode;
|
|
|
|
unsigned char m_displayType;
|
|
|
|
unsigned char m_displayBrightness;
|
|
|
|
bool m_displayInvert;
|
|
|
|
bool m_displayScroll;
|
|
|
|
bool m_displayRotate;
|
|
|
|
bool m_displayLogoScreensaver;
|
|
|
|
bool m_slot1Enabled;
|
|
|
|
bool m_slot2Enabled;
|
|
|
|
std::string m_ipAddress;
|
|
|
|
unsigned int m_passCounter;
|
|
|
|
|
|
|
|
unsigned char* m_oledBuffer;
|
|
|
|
uint8_t m_width;
|
|
|
|
uint8_t m_height;
|
|
|
|
bool m_textWrap;
|
|
|
|
uint8_t m_cursorX;
|
|
|
|
uint8_t m_cursorY;
|
|
|
|
uint8_t m_textSize;
|
|
|
|
uint16_t m_textColor;
|
|
|
|
uint16_t m_textBGColor;
|
2020-11-17 12:06:10 +00:00
|
|
|
|
|
|
|
void statusbar();
|
2020-11-17 15:30:59 +00:00
|
|
|
void clearDisplay();
|
|
|
|
void startscrollleft(uint8_t start, uint8_t stop);
|
|
|
|
void startscrolldiagleft(uint8_t start, uint8_t stop);
|
|
|
|
void stopscroll();
|
|
|
|
void setBrightness(uint8_t brightness);
|
|
|
|
void invertDisplay(bool invert);
|
|
|
|
void fillRect(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t color);
|
|
|
|
void drawLine(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t color);
|
|
|
|
void drawBitmap(uint16_t x, uint16_t y, const uint8_t* bitmap, uint16_t w, uint16_t h, uint16_t color);
|
|
|
|
void drawPixel(uint16_t x, uint16_t y, uint16_t color);
|
|
|
|
void print(const char* text);
|
|
|
|
void display();
|
|
|
|
void sendCommand(uint8_t c);
|
|
|
|
size_t write(uint8_t c);
|
|
|
|
void drawChar(uint16_t x, uint16_t y, unsigned char c, uint16_t color, uint16_t bg, uint8_t size);
|
|
|
|
|
2016-05-06 23:03:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|