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 956c81d commit 9f95733Copy full SHA for 9f95733
scratch-prg-extensions/extensions/src/arduino_basics/index.ts
@@ -43,7 +43,7 @@ const PATTERNS = {
43
[7, 0, 7, 7, 7, 0, 7, 0, 7, 7, 7, 0, 7],
44
[7, 0, 0, 0, 0, 0, 7, 0, 0, 7, 0, 0, 7],
45
[0, 7, 0, 0, 0, 7, 0, 7, 0, 0, 0, 7, 0],
46
- [0, 0, 7, 7, 7, 0, 0, 0, 7, 7, 7, 0, 0]
+ [0, 0, 7, 7, 7, 0, 0, 0, 7, 7, 7, 0, 0],
47
] as number[][],
48
empty: Array(8).fill(null).map(() => Array(13).fill(0)) as number[][],
49
} as const;
@@ -83,7 +83,6 @@ export default class ArduinoBasics extends extension(details, "ui", "customArgum
83
return tag`draw ${arg} matrix`;
84
})
85
drawMatrix(matrix: number[][]) {
86
- console.log("atic sendnd", matrix);
87
var matrixString = matrix.flat().join("");
88
console.log("received matrix update", matrixString);
89
if (this.socket) {
0 commit comments