debugging

This commit is contained in:
steve 2023-08-30 14:01:30 +01:00
parent 2273388b06
commit 12bed84629
1 changed files with 11 additions and 0 deletions

View File

@ -61,6 +61,11 @@ void Display::begin(colour_t bg, colour_t fg, orientation_t orient, unsigned dis
_yoff = (_dy - dispy) / 2;
_dx -= _xoff;
_dy -= _yoff;
#if defined(DEBUGGING)
Serial.printf("xoff %d yoff %d dx %d dy %d", _xoff, _yoff, _dx, _dy);
Serial.println();
#endif
}
void Display::begin(colour_t bg, colour_t fg, orientation_t orient) {
@ -102,6 +107,12 @@ void Display::begin(colour_t bg, colour_t fg, orientation_t orient) {
_cx = canvas.getFontInfo()->width;
_dx = canvas.getWidth();
_dy = canvas.getHeight();
#if defined(DEBUGGING)
Serial.printf("w %d h %d", _dx, _dy);
Serial.println();
#endif
#endif
setColor(fg);