#include "stm32f4xx.h" #include "LCD2x16.c" int main (){ unsigned int i = 0; LCD_init(); LCD_string("Demo", 0x03); LCD_string("x=", 0x41); LCD_string("mV", 0x48); while (1) { LCD_uInt16(i++,0x43,1); i &= 0x7fff; }; }