// STL includes #include #include #include // Boblight includes #include int main() { void* boblight_ptr = boblight_init(); if (!boblight_ptr) { std::cerr << "Failed to initialise bob-light" << std::endl; return -1; } const unsigned width = 112; const unsigned height = 63; boblight_setscanrange(boblight_ptr, width, height); std::vector rgbColor = { 255, 255, 0 }; for (unsigned iY=0; iY