#include "image.h" Image::Image() { } void Image::init() { flipdot.init(); //sets pin modes etc. flag_updating=false; update_counter=0; updateInterval=30; } uint8_t Image::getW() { return COLUMNS; } uint8_t Image::getH() { return ROWS; } void Image::setBuffer_solid(bool set) { for (uint8_t x=0;x=getW()) { //reached last column flag_updating=false; update_counter=0; return finished; //finished } return updating; //not finished } void Image::loop_testDots() { static bool init=false; if (!init) { flipdot.setRow(0); Serial.println("Clearing Display"); for (int l=0;l