BiNa2605
Full Member level 3
- Joined
- Sep 1, 2015
- Messages
- 179
- Helped
- 6
- Reputation
- 12
- Reaction score
- 4
- Trophy points
- 18
- Location
- VietNam
- Activity points
- 1,357
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
j = 0;
k = 0;
while(writebuff[k]) {
if(((writebuff[k] >= '0') && (writebuff[k] <= '9') || ((writebuff[k] >= 'a') && (writebuff[k] <= 'z')) || ((writebuff[k] >= 'A') && (writebuff[k] <= 'Z'))))
str[j++] = writebuff[k];
k++;
}
str[i] = '\0';
Lcd_Out(2,6,str);
System.Buffer.BlockCopy(strNull.ToCharArray(), 64-str.Length, bytes, 64-str.Length, 64);
System.Buffer.BlockCopy('\0', 64-str.Length, bytes, 64-str.Length, 64);
System.Buffer.BlockCopy( null, 64 - str.Length, bytes, 64 - str.Length, 64);
System.Buffer.BlockCopy('\0', 64-str.Length, bytes, 64-str.Length, 64);
System.Buffer.BlockCopy( null, 64 - str.Length, bytes, 64 - str.Length, 64);
if(((writebuff[k] >= '0') && (writebuff[k] <= '9') || ((writebuff[k] >= 'a') && (writebuff[k] <= 'z')) || ((writebuff[k] >= 'A') && (writebuff[k] <= 'Z'))))
if((writebuff[k] >= 32) && (writebuff[k] <= 126))
while(!HID_Read());
Delay_ms(2000);
Lcd_Cmd(_LCD_CLEAR);