Skip to content

Commit

Permalink
fixes the 0th and 16th lines staying on after the drawing code finishes
Browse files Browse the repository at this point in the history
  • Loading branch information
CamelCaseName committed Nov 12, 2023
1 parent 708dce4 commit 7cfb15b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=HUB75nano
version=2.1.4
version=2.1.5
author=Leonhard Seidel
maintainer=Leonhard Seidel <[email protected]>
sentence=This Library makes the Arduino Nano drive a hub75 panel up to 32x64
Expand Down
3 changes: 3 additions & 0 deletions src/HUB75nano.h
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,7 @@ displaySmallBuffer()
stepRow();
CLEAR_OE;
}
HIGH_OE;
}
#ifndef PANEL_FLASH
void setSmallBuffer(uint8_t x, uint8_t y, uint8_t red, uint8_t green, uint8_t blue)
Expand Down Expand Up @@ -1737,6 +1738,7 @@ displayBigBuffer()
}
#endif
}
HIGH_OE;
}

void setBigBuffer(uint8_t x, uint8_t y, uint8_t red, uint8_t green, uint8_t blue)
Expand Down Expand Up @@ -2480,6 +2482,7 @@ void setBigBuffer(uint8_t x, uint8_t y, uint8_t red, uint8_t green, uint8_t blue
#endif
#pragma endregion // LLSB
}
HIGH_OE;
}
#endif
#pragma endregion // buffer_specifics
Expand Down

0 comments on commit 7cfb15b

Please sign in to comment.