I'm doing a project that requires me to write a little library with some definitions like the following for each character in my alphabet.
byte _A[5] = {
0b00000001,
0b11101110,
0b11101110,
0b11101110,
0b00000001 };
My "font" is going to be 16 pixels tall by let's say 6 wide. Is there any way to generate this already, like some sweet web app, so that I don't have to do it manually/write my own app to do it?