Advertisement
PueN

IPST setTextColor example

Jun 24th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <ipst.h>
  2. void setup()
  3. {
  4.   setTextColor(GLCD_VIOLET);
  5.   glcd(0,0,"I");
  6.   setTextColor(GLCD_RED);
  7.   glcd(0,1,"N");
  8.   setTextColor(GLCD_BLUE);
  9.   glcd(0,2,"E");
  10.   setTextColor(GLCD_GREEN);
  11.   glcd(0,3,"X");
  12. }
  13.  
  14. void loop()
  15. {
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement