Coursework

Revision:
40:0d55297c8b34
Parent:
0:1f799c7cce2b
diff -r a31b49f3e65e -r 0d55297c8b34 N5110.h
--- a/N5110.h	Thu Feb 03 21:03:27 2022 +0000
+++ b/N5110.h	Thu Feb 03 22:03:36 2022 +0000
@@ -147,7 +147,7 @@
         // example of drawing lines
         for (int x = 0; x < WIDTH ; x+=10) {
             // x0,y0,x1,y1,type 0-white,1-black,2-dotted
-            lcd.drawLine(0,0,x,HEIGHT,2);
+            lcd.drawLine(0,0,x,HEIGHT,1);
         }
         lcd.refresh();  // refresh after drawing shapes
         wait(5.0);