gabriellimhj
Junior Member level 3
- Joined
- Oct 30, 2013
- Messages
- 30
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 6
- Activity points
- 181
hi, the code isn't working. It just show Zigbee on LCD and won't display the data i sent.
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.
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 void LCD_DisplayString(char *String) { int i = 0; while (*String) { LCD_WriteDataReg(*String++); } } // In while(1) loop // LCD Cmd 0xC0 here LCD_WriteDataReg(infor[1]); LCD_WriteDataReg(min / 10); LCD_WriteDataReg(min % 10);