Lines Matching refs:oled
32 var oled = new lcdObj.EBOLED(); variable
39 oled = null;
51 oled.clearScreenBuffer();
53 oled.refresh();
61 oled.setCursor(1,1);
63 oled.setTextWrap(1);
64 oled.write("HELLO WORLD! Mixed with #123 and y's, g's and q's.");
67 oled.setCursor(12, 1);
69 oled.setTextSize(3);
70 oled.write("BOO!");
71 oled.setTextSize(1);
74 oled.drawRectangleFilled(0,0,48,9);
75 oled.setCursor(1,1);
77 oled.setTextColor(2);
78 oled.write("Cutout");
83 oled.drawPixel(Math.floor(Math.random()*63), Math.floor(Math.random()*47), 1);
87 oled.drawLine(31, 24, Math.floor(Math.random()*63), Math.floor(Math.random()*47), 1);
94 oled.drawLine(peak, thisPeak, peak, 47, 1);
101 oled.drawLineHorizontal(0,y+1,63,2);
102 oled.refresh();
103 oled.drawLineHorizontal(0,y,63,2);
117 oled.clearScreenBuffer();
120 oled.drawRectangleFilled(eqbar*9, 49 - eqbarHeights[eqbar], 8, eqbarHeights[eqbar], 1);
125 oled.refresh();
127 oled.clear();
130 oled.drawRoundedRectangle(8, 8, 48, 16, 4, 1);
131 oled.setCursor(12, 16);
132 oled.write("Cancel");
135 oled.drawTriangle(2, 2, 52, 7, 17, 37, 1);
138 oled.drawTriangleFilled(2, 2, 52, 7, 17, 37, 1);
141 oled.drawCircle(32, 24, 14, 1);
144 oled.drawCircleFilled(32, 24, 14, 1);
147 oled.fillScreen(1);