Compile error in IDE > 1.5.8
Closed this issue · 1 comments
TomTheGeek commented
The use of prog_uchar is no longer supported.
In SevenSegment.cpp, line 55
PROGMEM const prog_uchar segmentMap[] = {
Should be:
PROGMEM const unsigned char segmentMap[] = {
supercrab commented
Thanks for letting me know Tom!
I shall sort that now.