#include "LedMatrix.h" LedMatrix::LedMatrix(uint8_t h, uint8_t w) : height(h), width(w), num_leds(h * w), leds(num_leds) { addLeds(leds.data(), num_leds); } LedMatrix::~LedMatrix() { }