You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed this when I was working with the library - display() outer loop for sending data is for (i = 0; i < 6; i++) but clear(uint8_t mode) (and clear(uint8_t mode, uint8_t c)) outer loop for sending zeros/values is for (int i = 0; i < 8; i++)
Note that display is looping through the range 0...5, but clear is looping through the range 0...7.
The text was updated successfully, but these errors were encountered:
I noticed this when I was working with the library -
display()
outer loop for sending data isfor (i = 0; i < 6; i++)
butclear(uint8_t mode)
(andclear(uint8_t mode, uint8_t c)
) outer loop for sending zeros/values isfor (int i = 0; i < 8; i++)
Note that display is looping through the range 0...5, but clear is looping through the range 0...7.
The text was updated successfully, but these errors were encountered: