Advertisement
KRITSADA

IPST Show Text on GLCD

Jul 12th, 2017
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <ipst.h>
  2. void setup(){
  3.   setTextSize(4); glcdMode(1);
  4.   setTextColor(GLCD_RED);   glcd(0,0,"I");
  5.   setTextColor(GLCD_GREEN); glcd(0,1,"N");
  6.   setTextColor(GLCD_BLUE);  glcd(0,2,"E");
  7.   setTextColor(GLCD_YELLOW);glcd(0,3,"X");
  8. }
  9.  
  10. void loop(){
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement