Advertisement
waravutbutrat

IPST_glcdFillRect 4 pic

Jun 24th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <ipst.h>
  2.  
  3. void setup()
  4. {
  5.  glcdFillRect(0,0,64,80,GLCD_RED);
  6.  glcdFillRect(64,0,64,80,GLCD_BLUE);
  7.  glcdFillRect(0,80,64,80,GLCD_YELLOW);
  8.  glcdFillRect(64,80,64,80,GLCD_MAGENTA);
  9.  
  10. }
  11.  
  12. void loop()
  13. {
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement