SHOW:
|
|
- or go back to the newest paste.
| 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(){} |