Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
UART1_Write(Lo(dat));
UART1_Write(Hi(dat));
UART1_Write(Higher(dat));
UART1_Write(Highest(dat));
char text[50];
long int i=567;
sprintf(text,"%ld",i);
Long data is 32 bits wide (4 bytes)
char str[17];
unsigned long val = 0;
LongToStr(val, str);
Ltrim(str);
strcat(str, "\r\n");
UART1_Write_Text(str);
if (UART1_Data_Ready() == 1)
{
j = UART1_Read()-48;
BytetoStr(j,txt);
Lcd_out(1,5,txt);
}