change from screen1 to screen2 or from Screen2 to Screen1 on touchgfx
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2023-03-31 11:36 PM
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2023-04-01 12:17 AM
Create interactions on both screen assign to hardware button (if you use letters in simulator you can test with pc keyboard) For example from code roller choice 85 letter U
in model.cpp tick place hw gpio check
if (HAL_GPIO_ReadPin(SW_PWR_GPIO_Port, SW_PWR_Pin) == GPIO_PIN_RESET )
{
static_cast<FrontendApplication*>(Application::getInstance())->handleKeyEvent(85);
}