Other Parts Discussed in Thread: LM3S6965
Hi,
I'd like to draw text on my oled i²c display but don't now how to implement the charactermap? I've read about using std::map to map values to keys but when I use this in the CCS it gives me an error syntax.
for example:
include <map>
include <iostream>
map<string, char*> charMap;
charMap['!']= {'0x00', '0x00', '0x5F', '0x00', '0x00'};
but this doesn't seem to work.
Any ideas how to approach this would be very appreciated!