Advertisement
Jaturapad

IPST glcdFillRect Example

Jun 24th, 2016
72
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.   glcdFillRect(0,0,64,80,GLCD_RED);
  5.   glcdFillRect(64,0,64,80,GLCD_MAGENTA);
  6.   glcdFillRect(0,80,64,80,GLCD_YELLOW);
  7.   glcdFillRect(64,80,64,80,GLCD_BLUE);
  8. }
  9.  
  10. void loop(){}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement