Skip to content

Commit

Permalink
video_wall_model: fixed pack, closes #2 (thanks @helge000)
Browse files Browse the repository at this point in the history
  • Loading branch information
vgavro committed Dec 1, 2021
1 parent e206ab4 commit addb50c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samsung_mdc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ def pack_videowall_model(value):
"""
Converts (x, y) tuple to one coordinates byte (with y, x representation)
"""
return (value[0] * 16) + value[1]
return [(value[1] * 16) + value[0]]
2 changes: 1 addition & 1 deletion samsung_mdc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.8.0'
__version__ = '1.8.1'

1 comment on commit addb50c

@helge000
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vgavro, FYI, just tested v1.8,1 - and confirm it works as expected now (pending the actual manual inspection as I am working from remote). I do not expect it but will certainly open a new issue in that case.

Cheers!

Please sign in to comment.