Build with lots of errors hangs Arduino process

Probably a known issue. But ran into this yesterday. I was hacking up a sketch to run on a Teensy 4.x board, in my case MicroMod. And I had a bug in a macro that is called a lot of times to initialze an array, and the compile only gets so far and hangs... And at this point you can not do anything within the IDE. You can not close the windows, do saves... But could resize window. The only thing I could do is use the Task manager to kill the process.

I am running WIndows 11.

Background:
the purpose was to convert a TGX library example bitmap object from one form (RGB565) to another RGB32.

There is a large array in it

#define C(R, G, B) RGB565(R, G, B)
...
const uint16_t /*RGB565*/ antique_clock_data[234 * 234] PROGMEM = {
  C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
  C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),

I thought at first that maybe I could simply have this copy of the array initialize to a uint16_t
instead of the RGB565...
With the run below I tried 2.04 I am running the latest Teensy beta (59.2) and it looked like in this case it was close to being done with the build.

Yesterday and now I am using the nightly build 0415: (Did not see any changes since then)
It appears to hang a lot quicker:

Note: the sketch more or less a run once and throw away.
That is I had it output the converted bitmap, to Serial port, where I copied the data from the Serial monitor into a structure for the actual program.

Side note: I used TyCommander as the Serial Monitor as the Arduino Serial Monitor still does not allow me, to copy and paste from it, except maybe for a few lines, that are visible in the window. Sure wish that issue would be resolved!

xxx-230416a.zip (221.1 KB)

The only change to make it compile was to undo the change of the line:

const uint16_t /*RGB565*/ antique_clock_data[234 * 234] PROGMEM = {

to

const RGB565 antique_clock_data[234 * 234] PROGMEM = {

Again not that these specifics matter, but I was imply converting the image such that I could set the area outside of the clock fact to be transparent, such that my hacking on the example sketch allowed different background colors.

Was just playing to see if I could convert his TGX library
( vindar/tgx: tgx - a tiny/teensy 3D graphics library (github.com))

To work with a few more of our TFT graphic libraries. In the picture below showing it working on our ST7789 code and likewise on the ILI9488 code.

Now back to hacking.

It was suggested that I should show the actual error messages.

1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:96: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:111: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:126: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                              ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:141: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:156: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:171: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:186: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:201: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1773:216: note: in expansion of macro 'C'
 1773 |   C(8, 10, 3), C(1, 0, 1), C(0, 0, 0), C(7, 10, 3), C(24, 43, 16), C(15, 25, 8), C(11, 19, 6), C(26, 53, 23), C(27, 54, 22), C(29, 55, 22), C(29, 53, 22), C(29, 52, 21), C(28, 52, 20), C(28, 53, 19), C(28, 51, 19), C(28, 50, 19),
      |                                                                                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:3: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:18: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:33: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:48: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:63: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:78: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                              ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:93: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:108: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:123: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:138: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:153: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:168: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:183: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:198: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:213: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1774:228: note: in expansion of macro 'C'
 1774 |   C(28, 50, 19), C(29, 51, 18), C(28, 49, 18), C(27, 49, 18), C(27, 49, 18), C(27, 48, 17), C(26, 46, 17), C(27, 47, 17), C(27, 47, 17), C(27, 47, 17), C(25, 44, 16), C(25, 43, 15), C(25, 44, 16), C(25, 43, 15), C(23, 40, 13), C(22, 37, 12),
      |                                                                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:3: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:18: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:33: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:48: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:63: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:77: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:90: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:105: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:120: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:135: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:150: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:165: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:177: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:189: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:203: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1775:218: note: in expansion of macro 'C'
 1775 |   C(23, 39, 13), C(24, 41, 14), C(23, 40, 14), C(22, 37, 15), C(13, 20, 7), C(9, 11, 2), C(23, 39, 13), C(25, 42, 12), C(25, 41, 12), C(24, 39, 13), C(17, 28, 11), C(1, 0, 0), C(2, 1, 0), C(14, 23, 9), C(21, 33, 12), C(24, 40, 13),
      |                                                                                                                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:3: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:18: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:33: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:46: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                              ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:60: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:75: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:90: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:105: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:120: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:135: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:150: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:165: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:180: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:195: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:210: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                                                                                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1776:225: note: in expansion of macro 'C'
 1776 |   C(26, 44, 14), C(22, 37, 12), C(8, 10, 1), C(16, 26, 9), C(23, 40, 14), C(25, 42, 14), C(26, 43, 15), C(27, 45, 16), C(26, 45, 14), C(26, 44, 13), C(27, 46, 14), C(27, 45, 15), C(27, 47, 16), C(26, 46, 16), C(27, 47, 16), C(27, 48, 17),
      |                                                                                                                                                                                                                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:3: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:18: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:33: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:48: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:63: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:78: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                              ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:93: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:108: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:123: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:138: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:153: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:168: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:183: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:198: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:213: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1777:228: note: in expansion of macro 'C'
 1777 |   C(27, 48, 17), C(26, 46, 16), C(26, 46, 16), C(28, 49, 17), C(27, 48, 17), C(27, 47, 16), C(27, 48, 17), C(28, 49, 17), C(28, 49, 18), C(28, 50, 18), C(28, 51, 19), C(28, 50, 19), C(29, 53, 19), C(29, 54, 20), C(28, 52, 20), C(27, 50, 20),
      |                                                                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:3: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:18: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:31: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:45: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:60: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:75: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:90: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:105: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:120: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:134: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:148: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:162: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:176: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:188: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:200: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1778:212: note: in expansion of macro 'C'
 1778 |   C(23, 41, 17), C(8, 11, 2), C(15, 25, 9), C(27, 50, 19), C(26, 48, 16), C(26, 46, 15), C(26, 44, 15), C(23, 39, 13), C(10, 12, 2), C(12, 16, 4), C(17, 25, 8), C(10, 11, 1), C(2, 1, 0), C(3, 2, 0), C(3, 3, 0), C(2, 3, 0),
      |                                                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:3: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:15: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:27: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:39: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:51: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:63: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:77: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:92: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:107: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:122: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:137: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:152: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:167: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:182: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:197: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1779:212: note: in expansion of macro 'C'
 1779 |   C(2, 3, 0), C(2, 3, 0), C(2, 2, 0), C(2, 2, 0), C(3, 2, 0), C(11, 19, 6), C(27, 51, 20), C(29, 55, 21), C(30, 56, 21), C(30, 56, 20), C(30, 56, 21), C(30, 57, 22), C(30, 56, 21), C(29, 54, 20), C(29, 54, 20), C(29, 53, 19),
      |                                                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:3: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:18: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:33: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:48: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:63: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:78: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                              ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:93: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                             ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:108: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                            ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:123: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:138: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                          ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:153: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                         ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:168: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                                        ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:183: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:198: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                                                                      ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:213: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                                                                                     ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1780:228: note: in expansion of macro 'C'
 1780 |   C(29, 53, 19), C(29, 53, 19), C(29, 52, 19), C(29, 53, 19), C(29, 52, 18), C(29, 52, 18), C(28, 51, 18), C(28, 51, 18), C(29, 52, 18), C(29, 53, 19), C(29, 52, 19), C(28, 51, 18), C(28, 49, 17), C(28, 50, 17), C(28, 50, 17), C(28, 50, 18),
      |                                                                                                                                                                                                                                    ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1781:3: note: in expansion of macro 'C'
 1781 |   C(28, 50, 18), C(28, 50, 18), C(28, 50, 18), C(28, 51, 18), C(28, 50, 18), C(28, 51, 18), C(28, 52, 19), C(29, 53, 19), C(29, 53, 19), C(29, 53, 20), C(29, 53, 20), C(29, 53, 20), C(28, 53, 19), C(29, 53, 20), C(29, 54, 20), C(29, 54, 20),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1781:18: note: in expansion of macro 'C'
 1781 |   C(28, 50, 18), C(28, 50, 18), C(28, 50, 18), C(28, 51, 18), C(28, 50, 18), C(28, 51, 18), C(28, 52, 19), C(29, 53, 19), C(29, 53, 19), C(29, 53, 20), C(29, 53, 20), C(29, 53, 20), C(28, 53, 19), C(29, 53, 20), C(29, 54, 20), C(29, 54, 20),
      |                  ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1781:33: note: in expansion of macro 'C'
 1781 |   C(28, 50, 18), C(28, 50, 18), C(28, 50, 18), C(28, 51, 18), C(28, 50, 18), C(28, 51, 18), C(28, 52, 19), C(29, 53, 19), C(29, 53, 19), C(29, 53, 20), C(29, 53, 20), C(29, 53, 20), C(28, 53, 19), C(29, 53, 20), C(29, 54, 20), C(29, 54, 20),
      |                                 ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:1781:48: note: in expansion of macro 'C'
 1781 |   C(28, 50, 18), C(28, 50, 18), C(28, 50, 18), C(28, 51, 18), C(28, 50, 18), C(

Note: the table that the defines are erroring out goes through about line 3472, so
There was a lot more to go.

Edit also note: the table started on line 50, and not seeing those errors here. Was seeing more on the 2.0.4... Will try running again.

It has been hung here for maybe 10 minutes so far, will kill it.
Note: I am now running on 0417, which is todays, which looks like it is about to (or maybe has now) going to release 2.1.0

2.0.4 run. I saw it showing error messages for most all of the lines,

But all that was left when it hung was>

|                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:99: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:111: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:123: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:135: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:147: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:159: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:171: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3464:183: note: in expansion of macro 'C'
 3464 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(1, 0, 0), C(1, 1, 0), C(1, 0, 0), C(1, 0, 0), C(1, 0, 0), C(1, 1, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:3: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:15: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:27: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:39: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:51: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:63: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:75: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:87: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:99: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:111: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:123: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:135: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:147: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:159: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:171: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3465:183: note: in expansion of macro 'C'
 3465 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 1), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 1, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:3: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:15: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:27: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:39: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:51: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:63: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:75: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:87: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:99: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:111: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:123: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:135: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:147: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:159: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:171: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3466:183: note: in expansion of macro 'C'
 3466 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:3: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:15: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:27: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:39: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:51: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:63: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:75: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:87: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:99: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:111: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:123: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:135: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:147: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:159: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:171: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3467:183: note: in expansion of macro 'C'
 3467 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:3: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:15: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:27: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:39: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:51: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:63: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:75: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:87: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:99: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:111: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:123: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:135: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:147: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:159: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:171: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3468:183: note: in expansion of macro 'C'
 3468 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:3: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:15: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:27: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:39: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:51: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:63: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:75: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:87: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:99: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:111: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:123: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:135: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:147: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:159: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:171: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3469:183: note: in expansion of macro 'C'
 3469 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:3: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:15: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:27: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:39: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:51: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:63: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:75: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:87: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:99: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:111: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:123: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:135: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:147: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:159: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:171: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3470:183: note: in expansion of macro 'C'
 3470 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:3: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:15: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:27: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:39: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:51: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:63: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:75: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:87: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:99: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:111: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:123: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:135: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:147: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:159: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:171: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3471:183: note: in expansion of macro 'C'
 3471 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0),
      |                                                                                                                                                                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3472:3: note: in expansion of macro 'C'
 3472 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0)
      |   ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3472:15: note: in expansion of macro 'C'
 3472 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0)
      |               ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3472:27: note: in expansion of macro 'C'
 3472 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0)
      |                           ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:46:20: error: cannot convert 'RGB565' to 'const uint16_t' {aka 'const short unsigned int'} in initialization
   46 | #define C(R, G, B) RGB565(R, G, B)
      |                    ^~~~~~~~~~~~~~~
      |                    |
      |                    RGB565
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3472:39: note: in expansion of macro 'C'
 3472 |   C(0, 0, 0), C(0, 0, 0), C(0, 0, 0), C(0, 0, 0)
      |                                       ^
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp: In function 'void convert_to_rgb32()':
C:\Users\kurte\Documents\Arduino\xxx\antique_clock.cpp:3522:30: error: cannot convert 'const uint16_t*' {aka 'const short unsigned int*'} to 'const RGB565*' in initialization
 3522 |     const RGB565 *row_data = &antique_clock_data[y * 234];
      |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                              |
      |                              const uint16_t* {aka const short unsigned int*}

Which looked like it made it through most everything.


But it has been hung in this state for several minutes so far.

I submitted a formal bug report on your behalf @KurtE:

Thanks for bringing this to our attention!

Thanks,

It hit me a few times when I was editing the macros for the large table...

I have not had the IDE hang on me very often.
Although was hit with one yesterday, where I started a build and nothing showed up in the build window. Waited a few minutes and killed from task manager. (close did not work). Also appeared like it stopped the autosave some time back as I think I lost maybe 10 minutes of editing. ... But no idea if this was a fluke or any idea on how to reproduce.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.