supercrab/arduino-seven-segment

Compile error in IDE > 1.5.8

Closed this issue · 1 comments

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[] = {

Thanks for letting me know Tom!

I shall sort that now.