nokia5110::nokia5110(int SCE, int RESET, int DC, int SDIN, int SCLK)
{
...
//Set up the ASCII tables
static byte ASCII[][5] = {
...
};
}
That table has scope only inside that function (I think).
nokia5110::nokia5110(int SCE, int RESET, int DC, int SDIN, int SCLK)
{
...
//Set up the ASCII tables
static byte ASCII[][5] = {
...
};
}
That table has scope only inside that function (I think).