Advertisement
Kru-aorio

IPST glcdLine + glceRect Example

Jun 24th, 2016
66
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.  
  3. void setup()
  4. {
  5.   glcdLine(0,0,128,160,GLCD_BLUE);
  6.   glcdLine(64,0,64,160,GLCD_RED);
  7.   glcdLine(0,80,128,80,GLCD_RED);
  8.   glcdLine(0,160,128,0,GLCD_BLUE);
  9.   glcdRect(0,0,128,160,GLCD_WHITE);
  10. }
  11.  
  12. void loop()
  13. {
  14. //128x160
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement