Skip to content

Commit

Permalink
Fix for Unicorn pHat driver (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
deckerego authored Jul 11, 2021
1 parent 96ec7a0 commit 7358c72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/tallypi/webapp/light/unicornhat.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __del__(self):
uh.off()

def setColor(self, red, green, blue):
uh.set_all(red, green, blue)
uh.set_all(int(red), int(green), int(blue))
uh.show()

def getColor(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def all_files(newroot, oldroot):

setup(
name='tallypi',
version='0.5.1',
version='0.5.2',
description='A network controlled tally light for video cameras',
author='DeckerEgo',
author_email='[email protected]',
Expand Down

0 comments on commit 7358c72

Please sign in to comment.