how to disp a float value on TFT screen with STM32F429ZI ?
Hello everyone, I try to disp float value on TFT Screen with STM32F429ZI. But, sprintf function is not work. Can you help me ? please.float fff = 0.85; char s_TextMsg[20]; sprintf(s_TextMsg,"%.2f",fff); snprintf(s_TextMsg,20,"%.2f",fff);...