Hi,
There isn't a specific driver available for this exact setup, you can utilize the generic GPIO driver provided by NXP. This driver can be used to interface with a variety of hardware, including a 5 Pin resistive touch screen.
Once downloaded, you can find the GPIO driver under the path: \\BSP\\drivers\\gpio. You can then modify this driver to suit your specific needs. Please refer to the documentation included in the BSP for more information on how to modify and use the driver.
Here is a simple code snippet to initialize the GPIO driver:
#include 'gpio.h'
void main() { // Initialize the GPIO driver Gpio_Init();
// Configure the GPIO pin Gpio_ConfigurePin(GPIO_PIN, GPIO_DIR_OUTPUT, GPIO_INT_DISABLE);
// Set the GPIO pin high Gpio_SetPin(GPIO_PIN, GPIO_PIN_SET); }
Please note that you will need to replace 'GPIO_PIN' with the actual pin number you are using for your 5 Pin resistive touch screen.
Remember to include the necessary header files and link against the correct libraries when compiling your code. The exact details will depend on your development environment and the specific version of WinIoT you are using.
If you encounter any issues or have further questions, please don't hesitate to ask.
Regards