73 lines
2.2 KiB
C++
73 lines
2.2 KiB
C++
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* File Name : STM32TouchController.hpp
|
|
******************************************************************************
|
|
* This file was created by TouchGFX Generator 4.21.1. This file is only
|
|
* generated once! Delete this file from your project and re-generate code
|
|
* using STM32CubeMX or change this file manually to update it.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2023 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
|
|
/* USER CODE BEGIN STM32TouchController */
|
|
|
|
#ifndef STM32TOUCHCONTROLLER_HPP
|
|
#define STM32TOUCHCONTROLLER_HPP
|
|
|
|
#include <platform/driver/touch/TouchController.hpp>
|
|
|
|
/**
|
|
* @class STM32TouchController
|
|
*
|
|
* @brief This class specializes TouchController Interface.
|
|
*
|
|
* @sa touchgfx::TouchController
|
|
*/
|
|
|
|
class STM32TouchController : public touchgfx::TouchController
|
|
{
|
|
public:
|
|
|
|
STM32TouchController() {}
|
|
|
|
/**
|
|
* @fn virtual void STM32TouchController::init() = 0;
|
|
*
|
|
* @brief Initializes touch controller.
|
|
*
|
|
* Initializes touch controller.
|
|
*/
|
|
virtual void init();
|
|
|
|
/**
|
|
* @fn virtual bool STM32TouchController::sampleTouch(int32_t& x, int32_t& y) = 0;
|
|
*
|
|
* @brief Checks whether the touch screen is being touched, and if so, what coordinates.
|
|
*
|
|
* Checks whether the touch screen is being touched, and if so, what coordinates.
|
|
*
|
|
* @param [out] x The x position of the touch
|
|
* @param [out] y The y position of the touch
|
|
*
|
|
* @return True if a touch has been detected, otherwise false.
|
|
*/
|
|
virtual bool sampleTouch(int32_t& x, int32_t& y);
|
|
};
|
|
|
|
#endif // STM32TOUCHCONTROLLER_HPP
|
|
|
|
/* USER CODE END STM32TouchController */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|