Search Results

Search results 1-11 of 11.

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

  • Set bitmap for Skin button

    Pixel3 - - emWin related

    Post

    Hi Im using emwin with stm32f429 discovery , mdk 5 i have create my interface with GUI Builder and skinning is on by default now i need to change my buttons appearance to some bitmap but when i call BUTTON_SetBitmap() nothing happends to my buttons please show me the true way to do this thanks

  • List view Header Text color

    Pixel3 - - emWin related

    Post

    Hi I want to chage listview Header Text color but cant find any function tanx

  • widgets + keyboard message

    Pixel3 - - emWin related

    Post

    Hi I 'm searching for a function to select a widget , so the keyboard messages be sent to it , for example i have some spinbox in frame , i want to select one of them and when user press up/ down keys the spinbox value change; tanx for your help

  • Hard Key + Menu

    Pixel3 - - emWin related

    Post

    problem solved

  • Hard Key + Menu

    Pixel3 - - emWin related

    Post

    Hi Adrian Tanks for answer i do this way creating my menu and then > WM_SetFocus(_hMenu); MENU_SetSel(_hMenu, 0); GUI_Exec(); GUI_StoreKeyMsg(GUI_KEY_ENTER,1); GUI_StoreKeyMsg(GUI_KEY_ENTER,0); GUI_Exec(); i expect , the first submenu bocome opend , but it doesnt , i test with GUI_SendKeyMsg() too

  • Hard Key + Menu

    Pixel3 - - emWin related

    Post

    hi i have made my menu , i have 4 keys in my device , i want to send key messages like (KEY_UP , KEY_DOWN , KEY_RIGHT, KEY_LEFT ) to the menu so the user can move in menus buy device hardkeys . i tried GUI_SendKeyMsg(), GUI_StoreKeyMsg() , but no result what must i do ? tnx

  • Hello Adrian I could drive my lcd with GUI_Drv_Template , now i am learning emwin so low speed is not so important for me . thank you for your kind cooperation

  • GUIDrv_Template

    Pixel3 - - emWin related

    Post

    Hello Im trying to drive my ssd1289 with GUIDrv_template, I did this works : 1 - Copy GUIDRV_Template.c from Sample Folder to my project root and add this file to my project 2 - Add #include <GUIDRV_Template.h> to LCDConf.h file 3 - Edit LCD_X_Config() functions in this way: GUI_DEVICE_CreateAndLink(GUIDRV_TEMPLATE, GUICC_M565, 0, 0); 4 - Add some code in LCD_Template.c : in _SetPixelIndex() , After // Write into hardware ... Adapt to your system , I added lcd write pixel commands 5 - add codes …

  • Thank you Adrian I asked keil and they said that they cant support compile time drivers ; I have to write a new driver for my device

  • Hi Adrian The header file "GUIDRV_CompactColor_16.h" dosnt exict in my "Emwin\Include\" folder Of course I found that My Keil Emwin folder , just consist of Runtime Configurable Drivers and there is no Compile time configurable driver header file , I searched the word "GUIDRV_COMPACT_COLOR_16" in all of files in "Emwin\Include\" folder and nothing founded !!! Is it possible that keil just support new Runtime Configurable Drivers ??????? Thanks for your help

  • Hi i m new to emwin and i m trying to drive my lcd with emwin but have a problem im using keil mdk 4.53+emwin5.12 and my lcd controller is SSD1289 . I did this works according to instructions of manual: 1 - I made "LCDConf_CompactColor16.h" file in my project directory 2 - added configurations to "LCDConf_CompactColor16.h" : 3 - added "#define LCD_USE_COMPACT_COLOR_16" to LCDConf.h 4 - and wrote " GUI_DEVICE_CreateAndLink(GUIDRV_COMPACT_COLOR_16, // Display driver GUICC_M565, // Color conversion…