Qrome / marquee-scroller

Marquee Scroller Clock News Weather and More
https://www.thingiverse.com/thing:2867294
MIT License
331 stars 158 forks source link

Matrix strange behaviour on display with Octoprint and Pi-hole #143

Open sorriso93 opened 4 years ago

sorriso93 commented 4 years ago

Hello till yesterday I didn't use Pi-hole section but only the octoprint one and after each print I reset the wemos d1 mini, in order to solve a little visualization problem (described below). IMG_3784

The problem was with one component of one of the matrix (I use 4), after starting printing, displaying nothing. The problem worsened with 3-4 component of the matrix not showing nothing as in the picture.

Having one of the 4 matrix with different rotation setup, I only added to your code in the setup section, this initialization:

int maxPos = numberOfHorizontalDisplays * numberOfVerticalDisplays;
  for (int i = 0; i < maxPos; i++) { 
    if (i>=12) 
      matrix.setRotation(i, 1);      
    else
     matrix.setRotation(i, 3);
    matrix.setPosition(i, maxPos - i - 1, 0);
  }

If I'm not printing and not using pi-hole feature, all is good... After a reset, printing and using pi-hole... It seems random behaviour and something related to display of printing information and pi-hole information...

IMG_3788 IMG_3786

sorriso93 commented 4 years ago

hello, no idea? in the meantime disabling octoprint and pihole monitoring solves the problem...