#include #include typedef struct Color { unsigned char r; unsigned char g; unsigned char b; unsigned char a; } Color; Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) { return (Color){.r = 0, .g = 0, .b = 255, .a = 255}; }