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
There is a problem with the current show() function.
It sends a single byte, while the default BlinkTape firmware expects at least 3 in the buffer to start processing. This means that BlinkyTape won't show anything at all after show(), still waiting on bytes until next pixel is sent.
Whether this is a problem of the firmware or the library is debatable, but a fix that is compatible with the default firmware is to send chr(0)+chr(0)+chr(255) on show().
The text was updated successfully, but these errors were encountered:
There is a problem with the current
show()
function.It sends a single byte, while the default BlinkTape firmware expects at least 3 in the buffer to start processing. This means that BlinkyTape won't show anything at all after
show()
, still waiting on bytes until next pixel is sent.Whether this is a problem of the firmware or the library is debatable, but a fix that is compatible with the default firmware is to send
chr(0)+chr(0)+chr(255)
onshow()
.The text was updated successfully, but these errors were encountered: