Need help, I can´t find the error.
In file included from bitmaps.cpp:2:
bitmaps.h:6: error: expected unqualified-id before '.' token
bitmaps.cpp:4: error: expected unqualified-id before '.' token
bitmaps.h
#ifndef bitmaps.h
#define bitmaps.h
#include <avr/pgmspace.h>
extern prog_uchar bitmaps[];
#endif
bitmaps.cpp
#include "bitmaps.h"
PROGMEM prog_uchar bitmaps[] = {
// N
5,5,
0b10001000,
0b11001000,
0b10101000,
0b10011000,
0b10001000,
// E
5,5,
0b11111000,
0b10000000,
0b11111000,
0b10000000,
0b11111000,
// S
5,5,
0b01111000,
0b10000000,
0b01110000,
0b00001000,
0b11110000,
// W
5,5,
0b10001000,
0b10001000,
0b10101000,
0b10101000,
0b01010000,
// home
6,6,
0b00110000,
0b01111000,
0b11111100,
0b01111000,
0b01011000,
0b01011000
};