We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d87153e commit e262e51Copy full SHA for e262e51
screen.ts
@@ -128,9 +128,11 @@ namespace user_interface_base {
128
const endIndex = startIndex + chunkSize;
129
130
const startingRow = (startIndex / width | 0);
131
- basic.showNumber(startingRow)
132
const endingRow = (endIndex / width | 0);
133
+ basic.showString("I")
134
+ basic.showNumber(startingRow)
135
+
136
// Buffer crosses multiple rows:
137
if (startingRow != endingRow) {
138
const rowBuf1 = Buffer.create(bitmap.width);
@@ -163,6 +165,7 @@ namespace user_interface_base {
163
165
// const end = start + chunkSize;
164
166
for (let i = 0; i < chunkSize; i++) {
167
res[i] = rowBuf[i + start];
168
+ basic.showNumber(res[i])
169
}
170
return res
171
0 commit comments