Advertisement
Jaturapad

IPST setVar Example

Jun 24th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <ipst.h>
  2. int x=100;
  3. void setup(){
  4.   setTextSize(3);
  5. }
  6.  
  7. void loop(){
  8.   glcd(0,0,"%d ",x);
  9.   x--; //x=x-1
  10.   delay(1000);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement