Creates error when uploading to ESP8266
# Break: require: module "commodetto/parseRLE" not found!
C:\Users\antho\moddable\examples\commodetto\progress\main.js (34) # Break: C:\Users\antho\moddable\examples\commodetto\progress\main.js: get parseRLE: undefined variable!
Fix:
change line 21 from
import parseRLE from "commodetto/parseRLE";
to
import ParseRLE from "commodetto/ParseRLE";
and line 34 from
let spinner = parseRLE(new Resource("spinner-strip-80px-24cell-blue-alpha.bm4"));
to
let spinner = ParseRLE(new Resource("spinner-strip-80px-24cell-blue-alpha.bm4"));
Creates error when uploading to ESP8266
Fix:
change line 21 from
to
and line 34 from
to