124 lines
2.8 KiB
C
124 lines
2.8 KiB
C
|
// Copyright 2020 Espressif Systems (Shanghai) Co. Ltd.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
#ifndef __LCD_SSD1963_H__
|
||
|
#define __LCD_SSD1963_H__
|
||
|
|
||
|
#include "screen_driver.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief device initialization
|
||
|
*
|
||
|
* @param lcd_conf configuration struct of ssd1963
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_init(const scr_controller_config_t *lcd_conf);
|
||
|
|
||
|
/**
|
||
|
* @brief Deinitial screen
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_deinit(void);
|
||
|
|
||
|
/**
|
||
|
* @brief Get screen information
|
||
|
*
|
||
|
* @param info Pointer to a scr_info_t structure.
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_get_info(scr_info_t *info);
|
||
|
|
||
|
/**
|
||
|
* @brief Set screen direction of rotation
|
||
|
*
|
||
|
* @param dir Pointer to a scr_dir_t structure.
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_set_rotation(scr_dir_t dir);
|
||
|
|
||
|
/**
|
||
|
* @brief Set screen window
|
||
|
*
|
||
|
* @param x0 Starting point in X direction
|
||
|
* @param y0 Starting point in Y direction
|
||
|
* @param x1 End point in X direction
|
||
|
* @param y1 End point in Y direction
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK on success
|
||
|
* - ESP_FAIL Failed
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_set_window(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);
|
||
|
|
||
|
/**
|
||
|
* @brief Write a RAM data
|
||
|
*
|
||
|
* @param color New color of a pixel
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK on success
|
||
|
* - ESP_FAIL Failed
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_write_ram_data(uint16_t color);
|
||
|
|
||
|
/**
|
||
|
* @brief Draw one pixel in screen with color
|
||
|
*
|
||
|
* @param x X co-ordinate of set orientation
|
||
|
* @param y Y co-ordinate of set orientation
|
||
|
* @param color New color of the pixel
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_draw_pixel(uint16_t x, uint16_t y, uint16_t color);
|
||
|
|
||
|
/**
|
||
|
* @brief Fill the pixels on LCD screen with bitmap
|
||
|
*
|
||
|
* @param x Starting point in X direction
|
||
|
* @param y Starting point in Y direction
|
||
|
* @param w width of image in bitmap array
|
||
|
* @param h height of image in bitmap array
|
||
|
* @param bitmap pointer to bitmap array
|
||
|
*
|
||
|
* @return
|
||
|
* - ESP_OK Success
|
||
|
* - ESP_FAIL Fail
|
||
|
*/
|
||
|
esp_err_t lcd_ssd1963_draw_bitmap(uint16_t x, uint16_t y, uint16_t w, uint16_t h, uint16_t *bitmap);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|