Replies: 1 comment 2 replies
-
Thanks for the report. A little while ago, I changed the The following code should work for you. It replaces lines 21 to 28. The error is now a warning traced to the console. import config from "mc/config";
if (!config.Screen)
trace("WARNING: no screen configured\n");
export default function (done) {
if (!global.screen && config.Screen) {
globalThis.screen = new config.Screen({}); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I try to run example
httpserverbmp
with m5stamp_s3
which has no screen, but I saw below error while build application.I understand that Commodetto is required to generate BMP, but I am not sure if it is correct for such a situation to occur when nothing is actually displayed on the screen.
I haven’t tried it, but I think the same can be said about the
camera-server
.Beta Was this translation helpful? Give feedback.
All reactions