Nuvoton And AppWizard

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Hi,

      Do you want to retrieve the gauge values? You could react on a value change of the gauge. Just add an interaction:

      ID_GAUGE -> VALUE_CHANGED -> SET_VALUE -> ID_TEXT (the object you want to send the value to).

      Then the gauge value will be displayed in a text object (given that decimal mode is enabled for the text object).

      Best regards,
      Florian
      Please read the forum rules before posting.

      Keep in mind, this is *not* a support forum.
      Our engineers will try to answer your questions between their projects if possible but this can be delayed by longer periods of time.
      Should you be entitled to support you can contact us via our support system: segger.com/ticket/

      Or you can contact us via e-mail.
    • I use this code use for example. But ı dont see in live expression screen the values


      C Source Code

      1. void MainTask(void) {
      2. int i=0;
      3. char* getValues[20];
      4. //
      5. // Setup configuration dependent pointers
      6. //
      7. APPW_X_Setup();
      8. //
      9. // Initialize AppWizard
      10. //
      11. APPW_Init(APPW_PROJECT_PATH);
      12. //
      13. // Create all persistent screens except initial screen
      14. //
      15. APPW_CreatePersistentScreens();
      16. //
      17. // Create initial screen...
      18. //
      19. APPW_CreateRoot(APPW_INITIAL_SCREEN, WM_HBKWIN);
      20. //
      21. // ...and keep it alive
      22. //
      23. while (1) {
      24. while (GUI_Exec1()) {
      25. APPW_Exec();
      26. APPW_SetValue(ID_SCREEN_00,ID_PROGBAR_00,i++);
      27. if(i>=100) i=0;
      28. APPW_GetText(ID_SCREEN_00,ID_TEXT_00,getValues[0],5);
      29. }
      30. APPW_Exec();
      31. GUI_X_Delay(5);
      32. }
      33. }
      Display All