2019-08-05 13:14:59 +01:00

196 lines
5.7 KiB
C

/**
******************************************************************************
* @file BSP/Src/lcd.c
* @author MCD Application Team
* @brief This example code shows how to use LCD drawing features.
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "image_f7.h"
/** @addtogroup STM32F7xx_HAL_Examples
* @{
*/
/** @addtogroup BSP
* @{
*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
#define LCD_FEATURES_NUM 5
#define HEADBAND_HEIGHT 64
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
static uint8_t LCD_Feature = 0;
/* Private function prototypes -----------------------------------------------*/
static void LCD_SetHint(void);
static void LCD_Show_Feature(uint8_t feature);
/* Private functions ---------------------------------------------------------*/
/**
* @brief LCD demo
* @param None
* @retval None
*/
void LCD_demo (void)
{
LCD_SetHint();
LCD_Feature = 0;
LCD_Show_Feature (LCD_Feature);
while (1)
{
if(CheckForUserInput() > 0)
{
if(++LCD_Feature < LCD_FEATURES_NUM)
{
LCD_Show_Feature (LCD_Feature);
}
else
{
return;
}
}
HAL_Delay(100);
}
}
/**
* @brief Display LCD demo hint
* @param None
* @retval None
*/
static void LCD_SetHint(void)
{
/* Clear the LCD */
BSP_LCD_Clear(LCD_COLOR_WHITE);
/* Set LCD Demo description */
BSP_LCD_SetTextColor(LCD_COLOR_BLUE);
BSP_LCD_FillRect(0, 0, BSP_LCD_GetXSize(), HEADBAND_HEIGHT);
BSP_LCD_SetTextColor(LCD_COLOR_WHITE);
BSP_LCD_SetBackColor(LCD_COLOR_BLUE);
BSP_LCD_SetFont(&Font16);
BSP_LCD_DisplayStringAt(0, 1, (uint8_t *)"LCD", CENTER_MODE);
BSP_LCD_SetFont(&Font12);
BSP_LCD_DisplayStringAt(0, 20, (uint8_t *)"This example shows LCD", CENTER_MODE);
BSP_LCD_DisplayStringAt(0, 35, (uint8_t *)"features, press button", CENTER_MODE);
BSP_LCD_DisplayStringAt(0, 50, (uint8_t *)"to display next page", CENTER_MODE);
}
/**
* @brief Show LCD Features
* @param feature : feature index
* @retval None
*/
static void LCD_Show_Feature(uint8_t feature)
{
Point Points[]= {{20, 120}, {80, 120}, {80, 170}};
Point Points2[]= {{100, 120}, {160, 120}, {160, 170}};
uint32_t i = 0;
BSP_LCD_SetBackColor(LCD_COLOR_WHITE);
BSP_LCD_SetTextColor(LCD_COLOR_WHITE);
BSP_LCD_FillRect(0, HEADBAND_HEIGHT, BSP_LCD_GetXSize(), BSP_LCD_GetYSize() - HEADBAND_HEIGHT);
BSP_LCD_SetTextColor(LCD_COLOR_BLACK);
switch (feature)
{
case 0:
/* Text Feature */
BSP_LCD_DisplayStringAt(0, 70, (uint8_t *)"Left aligned Text", LEFT_MODE);
BSP_LCD_DisplayStringAt(0, 85, (uint8_t *)"Center aligned Text", CENTER_MODE);
BSP_LCD_DisplayStringAt(0, 100, (uint8_t *)"Right aligned Text", RIGHT_MODE);
BSP_LCD_SetFont(&Font24);
BSP_LCD_DisplayStringAt(0, 118, (uint8_t *)"Font24", CENTER_MODE);
BSP_LCD_SetFont(&Font20);
BSP_LCD_DisplayStringAt(0, 140, (uint8_t *)"Font20", CENTER_MODE);
BSP_LCD_SetFont(&Font16);
BSP_LCD_DisplayStringAt(0, 160, (uint8_t *)"Font16", CENTER_MODE);
break;
case 1:
/* Draw misc. Shapes */
BSP_LCD_SetTextColor(LCD_COLOR_GRAY);
BSP_LCD_DrawCircle(BSP_LCD_GetXSize() - 120, 90, 20);
BSP_LCD_FillCircle(BSP_LCD_GetXSize() - 40, 90, 20);
BSP_LCD_SetTextColor(LCD_COLOR_GREEN);
BSP_LCD_DrawPolygon(Points, 3);
BSP_LCD_FillPolygon(Points2, 3);
break;
case 2:
/* Draw other misc. Shapes */
BSP_LCD_SetTextColor(LCD_COLOR_BLACK);
BSP_LCD_DrawRect(20, 70, 60 , 40);
BSP_LCD_FillRect(100, 70, 60 , 40);
BSP_LCD_SetTextColor(LCD_COLOR_RED);
BSP_LCD_DrawEllipse(50, 140, 30, 20);
BSP_LCD_FillEllipse(BSP_LCD_GetXSize() - 50, 140, 30, 20);
BSP_LCD_SetTextColor(LCD_COLOR_BLACK);
BSP_LCD_DrawHLine(20, BSP_LCD_GetYSize() - 5, BSP_LCD_GetXSize() - 40);
BSP_LCD_DrawVLine(BSP_LCD_GetXSize()/2, HEADBAND_HEIGHT + 5, BSP_LCD_GetYSize() - HEADBAND_HEIGHT - 10);
BSP_LCD_DrawLine (20, BSP_LCD_GetYSize()- 20, BSP_LCD_GetXSize()- 20, BSP_LCD_GetYSize()- 60);
BSP_LCD_DrawLine (20, BSP_LCD_GetYSize()- 60, BSP_LCD_GetXSize()- 20, BSP_LCD_GetYSize()- 20);
break;
case 3:
/* Draw graph */
BSP_LCD_SetTextColor(LCD_COLOR_BLUE);
BSP_LCD_SetFont(&Font12);
for(i = 0; i < 24; i++)
{
BSP_LCD_DrawHLine(10*i, 150, 5);
BSP_LCD_DrawVLine(i*10, 150, 70);
BSP_LCD_DrawHLine(10*i + 5, 220, 5);
BSP_LCD_DrawVLine(i*10 + 5, 150, 70);
}
for(i = 0; i < 12; i++)
{
BSP_LCD_DrawLine(20*i, 70, 20*(i+1), 140);
BSP_LCD_DrawLine(20*(i+1), 140, 20*(i+2), 70);
BSP_LCD_DrawLine(20*i, 140, 20*(i+1), 70);
BSP_LCD_DrawLine(20*(i+1), 70, 20*(i+2), 140);
i++;
}
break;
case 4:
/* Draw Bitmap */
BSP_LCD_DrawBitmap(0, 0, (uint8_t *)ImageF7);
break;
}
}
/**
* @}
*/
/**
* @}
*/
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/