File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ v0.7.2
5+ ------
6+ - Fixed a bug with colourtail using the new set_bulk.
7+
48v0.7.1
59------
610- Fixed a bug with set_bulk and updated tests.
Original file line number Diff line number Diff line change @@ -85,6 +85,6 @@ def update(self):
8585 for pixel in self .pixel_buffer [:PIXEL_BUFFER_SIZE ]
8686 for value in (pixel .green , pixel .red , pixel .blue )]
8787 control = COLOURTAIL_CONTROL_GO_BUSY
88- self .codebug .set_buffer (0 , codebug_buffer )
88+ self .codebug .set_buffer (0 , bytes ( codebug_buffer ) )
8989 self .codebug .set_bulk (CHANNEL_INDEX_COLOURTAIL_LENGTH ,
90- ( len (self .pixel_buffer ), control ))
90+ bytes (( len (self .pixel_buffer ), control ) ))
Original file line number Diff line number Diff line change 1- __version__ = '0.7.1 '
1+ __version__ = '0.7.2 '
You can’t perform that action at this time.
0 commit comments