mirror of
https://github.com/eclipse/upm.git
synced 2025-03-16 21:47:29 +03:00
230 lines
8.3 KiB
C++
230 lines
8.3 KiB
C++
/*
|
||
* Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
|
||
* Copyright (c) 2014 Intel Corporation.
|
||
*
|
||
* Permission is hereby granted, free of charge, to any person obtaining
|
||
* a copy of this software and associated documentation files (the
|
||
* "Software"), to deal in the Software without restriction, including
|
||
* without limitation the rights to use, copy, modify, merge, publish,
|
||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
* permit persons to whom the Software is furnished to do so, subject to
|
||
* the following conditions:
|
||
*
|
||
* The above copyright notice and this permission notice shall be
|
||
* included in all copies or substantial portions of the Software.
|
||
*
|
||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
*/
|
||
|
||
#pragma once
|
||
|
||
#include <string>
|
||
#include "i2clcd.h"
|
||
|
||
namespace upm {
|
||
/*
|
||
#define DISPLAY_CMD_OFF 0xAE
|
||
#define DISPLAY_CMD_ON 0xAF
|
||
|
||
#define BASE_LOW_COLUMN_ADDR 0x00
|
||
#define BASE_HIGH_COLUMN_ADDR 0x10
|
||
#define BASE_PAGE_START_ADDR 0xB0
|
||
#define DISPLAY_CMD_MEM_ADDR_MODE 0x20
|
||
*/
|
||
#define DISPLAY_CMD_SET_NORMAL 0xA4
|
||
|
||
const uint8_t BasicFont[][8] =
|
||
{
|
||
{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x00,0x5F,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x00,0x07,0x00,0x07,0x00,0x00,0x00},
|
||
{0x00,0x14,0x7F,0x14,0x7F,0x14,0x00,0x00},
|
||
{0x00,0x24,0x2A,0x7F,0x2A,0x12,0x00,0x00},
|
||
{0x00,0x23,0x13,0x08,0x64,0x62,0x00,0x00},
|
||
{0x00,0x36,0x49,0x55,0x22,0x50,0x00,0x00},
|
||
{0x00,0x00,0x05,0x03,0x00,0x00,0x00,0x00},
|
||
{0x00,0x1C,0x22,0x41,0x00,0x00,0x00,0x00},
|
||
{0x00,0x41,0x22,0x1C,0x00,0x00,0x00,0x00},
|
||
{0x00,0x08,0x2A,0x1C,0x2A,0x08,0x00,0x00},
|
||
{0x00,0x08,0x08,0x3E,0x08,0x08,0x00,0x00},
|
||
{0x00,0xA0,0x60,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00},
|
||
{0x00,0x60,0x60,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00},
|
||
{0x00,0x3E,0x51,0x49,0x45,0x3E,0x00,0x00},
|
||
{0x00,0x00,0x42,0x7F,0x40,0x00,0x00,0x00},
|
||
{0x00,0x62,0x51,0x49,0x49,0x46,0x00,0x00},
|
||
{0x00,0x22,0x41,0x49,0x49,0x36,0x00,0x00},
|
||
{0x00,0x18,0x14,0x12,0x7F,0x10,0x00,0x00},
|
||
{0x00,0x27,0x45,0x45,0x45,0x39,0x00,0x00},
|
||
{0x00,0x3C,0x4A,0x49,0x49,0x30,0x00,0x00},
|
||
{0x00,0x01,0x71,0x09,0x05,0x03,0x00,0x00},
|
||
{0x00,0x36,0x49,0x49,0x49,0x36,0x00,0x00},
|
||
{0x00,0x06,0x49,0x49,0x29,0x1E,0x00,0x00},
|
||
{0x00,0x00,0x36,0x36,0x00,0x00,0x00,0x00},
|
||
{0x00,0x00,0xAC,0x6C,0x00,0x00,0x00,0x00},
|
||
{0x00,0x08,0x14,0x22,0x41,0x00,0x00,0x00},
|
||
{0x00,0x14,0x14,0x14,0x14,0x14,0x00,0x00},
|
||
{0x00,0x41,0x22,0x14,0x08,0x00,0x00,0x00},
|
||
{0x00,0x02,0x01,0x51,0x09,0x06,0x00,0x00},
|
||
{0x00,0x32,0x49,0x79,0x41,0x3E,0x00,0x00},
|
||
{0x00,0x7E,0x09,0x09,0x09,0x7E,0x00,0x00},
|
||
{0x00,0x7F,0x49,0x49,0x49,0x36,0x00,0x00},
|
||
{0x00,0x3E,0x41,0x41,0x41,0x22,0x00,0x00},
|
||
{0x00,0x7F,0x41,0x41,0x22,0x1C,0x00,0x00},
|
||
{0x00,0x7F,0x49,0x49,0x49,0x41,0x00,0x00},
|
||
{0x00,0x7F,0x09,0x09,0x09,0x01,0x00,0x00},
|
||
{0x00,0x3E,0x41,0x41,0x51,0x72,0x00,0x00},
|
||
{0x00,0x7F,0x08,0x08,0x08,0x7F,0x00,0x00},
|
||
{0x00,0x41,0x7F,0x41,0x00,0x00,0x00,0x00},
|
||
{0x00,0x20,0x40,0x41,0x3F,0x01,0x00,0x00},
|
||
{0x00,0x7F,0x08,0x14,0x22,0x41,0x00,0x00},
|
||
{0x00,0x7F,0x40,0x40,0x40,0x40,0x00,0x00},
|
||
{0x00,0x7F,0x02,0x0C,0x02,0x7F,0x00,0x00},
|
||
{0x00,0x7F,0x04,0x08,0x10,0x7F,0x00,0x00},
|
||
{0x00,0x3E,0x41,0x41,0x41,0x3E,0x00,0x00},
|
||
{0x00,0x7F,0x09,0x09,0x09,0x06,0x00,0x00},
|
||
{0x00,0x3E,0x41,0x51,0x21,0x5E,0x00,0x00},
|
||
{0x00,0x7F,0x09,0x19,0x29,0x46,0x00,0x00},
|
||
{0x00,0x26,0x49,0x49,0x49,0x32,0x00,0x00},
|
||
{0x00,0x01,0x01,0x7F,0x01,0x01,0x00,0x00},
|
||
{0x00,0x3F,0x40,0x40,0x40,0x3F,0x00,0x00},
|
||
{0x00,0x1F,0x20,0x40,0x20,0x1F,0x00,0x00},
|
||
{0x00,0x3F,0x40,0x38,0x40,0x3F,0x00,0x00},
|
||
{0x00,0x63,0x14,0x08,0x14,0x63,0x00,0x00},
|
||
{0x00,0x03,0x04,0x78,0x04,0x03,0x00,0x00},
|
||
{0x00,0x61,0x51,0x49,0x45,0x43,0x00,0x00},
|
||
{0x00,0x7F,0x41,0x41,0x00,0x00,0x00,0x00},
|
||
{0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00},
|
||
{0x00,0x41,0x41,0x7F,0x00,0x00,0x00,0x00},
|
||
{0x00,0x04,0x02,0x01,0x02,0x04,0x00,0x00},
|
||
{0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00},
|
||
{0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00},
|
||
{0x00,0x20,0x54,0x54,0x54,0x78,0x00,0x00},
|
||
{0x00,0x7F,0x48,0x44,0x44,0x38,0x00,0x00},
|
||
{0x00,0x38,0x44,0x44,0x28,0x00,0x00,0x00},
|
||
{0x00,0x38,0x44,0x44,0x48,0x7F,0x00,0x00},
|
||
{0x00,0x38,0x54,0x54,0x54,0x18,0x00,0x00},
|
||
{0x00,0x08,0x7E,0x09,0x02,0x00,0x00,0x00},
|
||
{0x00,0x18,0xA4,0xA4,0xA4,0x7C,0x00,0x00},
|
||
{0x00,0x7F,0x08,0x04,0x04,0x78,0x00,0x00},
|
||
{0x00,0x00,0x7D,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x80,0x84,0x7D,0x00,0x00,0x00,0x00},
|
||
{0x00,0x7F,0x10,0x28,0x44,0x00,0x00,0x00},
|
||
{0x00,0x41,0x7F,0x40,0x00,0x00,0x00,0x00},
|
||
{0x00,0x7C,0x04,0x18,0x04,0x78,0x00,0x00},
|
||
{0x00,0x7C,0x08,0x04,0x7C,0x00,0x00,0x00},
|
||
{0x00,0x38,0x44,0x44,0x38,0x00,0x00,0x00},
|
||
{0x00,0xFC,0x24,0x24,0x18,0x00,0x00,0x00},
|
||
{0x00,0x18,0x24,0x24,0xFC,0x00,0x00,0x00},
|
||
{0x00,0x00,0x7C,0x08,0x04,0x00,0x00,0x00},
|
||
{0x00,0x48,0x54,0x54,0x24,0x00,0x00,0x00},
|
||
{0x00,0x04,0x7F,0x44,0x00,0x00,0x00,0x00},
|
||
{0x00,0x3C,0x40,0x40,0x7C,0x00,0x00,0x00},
|
||
{0x00,0x1C,0x20,0x40,0x20,0x1C,0x00,0x00},
|
||
{0x00,0x3C,0x40,0x30,0x40,0x3C,0x00,0x00},
|
||
{0x00,0x44,0x28,0x10,0x28,0x44,0x00,0x00},
|
||
{0x00,0x1C,0xA0,0xA0,0x7C,0x00,0x00,0x00},
|
||
{0x00,0x44,0x64,0x54,0x4C,0x44,0x00,0x00},
|
||
{0x00,0x08,0x36,0x41,0x00,0x00,0x00,0x00},
|
||
{0x00,0x00,0x7F,0x00,0x00,0x00,0x00,0x00},
|
||
{0x00,0x41,0x36,0x08,0x00,0x00,0x00,0x00},
|
||
{0x00,0x02,0x01,0x01,0x02,0x01,0x00,0x00},
|
||
{0x00,0x02,0x05,0x05,0x02,0x00,0x00,0x00}
|
||
};
|
||
|
||
typedef enum {
|
||
HORIZONTAL = 0,
|
||
VERTICAL = 1,
|
||
PAGE = 2
|
||
} displayAddressingMode;
|
||
|
||
/**
|
||
* @brief C++ API for SSD1327 i2c controlled OLED displays
|
||
*
|
||
* The [SSD1327](http://garden.seeedstudio.com/images/8/82/SSD1327_datasheet.pdf)
|
||
* is a 96x96 Dot matrix OLED/PLED segment driver with controller. This
|
||
* implementation was tested using the
|
||
* [Grove LED 96×96 Display module]
|
||
* (http://www.seeedstudio.com/wiki/Grove_-_OLED_Display_1.12%22)
|
||
* which is an OLED monochrome display
|
||
*
|
||
* @ingroup i2clcd
|
||
* @snippet oled-1327.cxx Interesting
|
||
* @image html ssd1327.jpeg
|
||
*/
|
||
class SSD1327 : public I2CLcd {
|
||
public:
|
||
/**
|
||
* SSD1327 Constructor, calls libmraa initialisation functions
|
||
*
|
||
* @param bus i2c bus to use
|
||
* @param address the slave address the lcd is registered on
|
||
*/
|
||
SSD1327 (int bus, int address);
|
||
/**
|
||
* SSD1327 destructor
|
||
*/
|
||
~SSD1327 ();
|
||
/**
|
||
* Draw an image, see examples/python/make_oled_pic.py for an
|
||
* explanation on how the pixels are mapped to bytes
|
||
*
|
||
* @param data the buffer to read
|
||
* @param bytes the amount of bytes to read from the pointer
|
||
* @return Result of operation
|
||
*/
|
||
mraa_result_t draw(uint8_t *data, int bytes);
|
||
/**
|
||
* Set gray level for LCD panel
|
||
*
|
||
* @param gray level from 0-255
|
||
* @return Result of operation
|
||
*/
|
||
mraa_result_t setGrayLevel (uint8_t level);
|
||
/**
|
||
* Write a string to LCD
|
||
*
|
||
* @param msg The std::string to write to display, note only ascii
|
||
* chars are supported
|
||
* @return Result of operation
|
||
*/
|
||
mraa_result_t write(std::string msg);
|
||
/**
|
||
* Set cursor to a coordinate
|
||
*
|
||
* @param row The row to set cursor to
|
||
* @param column The column to set cursor to
|
||
* @return Result of operation
|
||
*/
|
||
mraa_result_t setCursor(int row, int column);
|
||
/**
|
||
* Clear display from characters
|
||
*
|
||
* @return Result of operatio
|
||
*/
|
||
mraa_result_t clear();
|
||
/**
|
||
* Return to coordinate 0,0
|
||
*
|
||
* @return Result of operation
|
||
*/
|
||
mraa_result_t home();
|
||
|
||
private:
|
||
mraa_result_t writeChar (mraa_i2c_context ctx, uint8_t value);
|
||
mraa_result_t setNormalDisplay ();
|
||
mraa_result_t setHorizontalMode ();
|
||
mraa_result_t setVerticalMode ();
|
||
|
||
uint8_t grayHigh;
|
||
uint8_t grayLow;
|
||
};
|
||
}
|