4
« on: February 13, 2021, 06:46:04 PM »
Thank you Jean.
I used first setbitmap as per example in help:
char MyBitmap[16][17] =
"x xxxxxxxxxxxxxx",
"x xxxxxxxxxxxxxx",
"xx xxxxxxxxxxxxx",
"xxx xxxxxxxxxxxx",
"xxxx xxxxxxxxxxx",
"xxxxx xxxxxxxxxx",
"xxxxxx xxxxxxxxx",
"xxxxxxx xxxxxxxx",
"xxxxxxxx xxxxxxx",
"xxxxxxxx xxxxxxx",
"xxxxxxxxx xxxxxx",
"xxxxxxxxxx xxxxx",
"xxxxxxxxxxx xxxx",
"xxxxxxxxxxxx xxx",
"xxxxxxxxxxxxxx x",
"xxxxxxxxxxxxxxx ";
setbitmap(&MyBitmap, BLACK);
putbitmap(10, 10, 0);
but PD tells me that: "Variable not found: Parameter no: 1. Line 221"
Line 221 is: setbitmap(&MyBitmap, BLACK);
therefore I was looking for other way as that one does not work for me and don't know how to get it right.
char MyBitmap is in the section where all variables are being declared of course.
What do I wrong with this one?