Advertisement
KRITSADA

IPST setTextColor Example

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