We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ae30a commit e8a2f48Copy full SHA for e8a2f48
1 file changed
screen.ts
@@ -150,8 +150,12 @@ namespace user_interface_base {
150
151
// Simply get the row, slice off the required bytes:
152
else {
153
- basic.showNumber(chunkIndex)
+ // basic.showNumber(chunkIndex)
154
const rowBuf = Buffer.create(bitmap.width);
155
+ for (let i = 0; i < rowBuf.length; i++) {
156
+ rowBuf[i] = 3;
157
+ }
158
+
159
bitmap.getRows(startingRow, rowBuf);
160
const res = rowBuf.slice(startIndex % width, chunkSize);
161
if (res.length > 16)
0 commit comments