Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Commits
f1bbbd1a
Verified
Commit
f1bbbd1a
authored
1 year ago
by
dos
Browse files
Options
Downloads
Patches
Plain Diff
sim: fakes: Implement RGB <-> HSV color conversions
parent
b50fc6f2
No related branches found
No related tags found
1 merge request
!600
Simulator improvements
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sim/fakes/leds.py
+3
-5
3 additions, 5 deletions
sim/fakes/leds.py
sim/fakes/sys_colors.py
+18
-1
18 additions, 1 deletion
sim/fakes/sys_colors.py
with
21 additions
and
6 deletions
sim/fakes/leds.py
+
3
−
5
View file @
f1bbbd1a
from
_sim
import
_sim
from
sys_colors
import
hsv_to_rgb
from
math
import
tau
import
pygame
...
...
@@ -30,11 +32,7 @@ def set_all_rgb(r, g, b):
def
set_hsv
(
ix
,
h
,
s
,
v
):
color
=
pygame
.
Color
(
0
)
h
=
int
(
h
)
h
=
h
%
360
color
.
hsva
=
(
h
,
s
*
100
,
v
*
100
,
1.0
)
set_rgb
(
ix
,
color
.
r
/
255
,
color
.
g
/
255
,
color
.
b
/
255
)
set_rgb
(
ix
,
*
hsv_to_rgb
(
h
/
360
*
tau
,
s
,
v
))
def
set_all_hsv
(
h
,
s
,
v
):
...
...
This diff is collapsed.
Click to expand it.
sim/fakes/sys_colors.py
+
18
−
1
View file @
f1bbbd1a
from
colorsys
import
hsv_to_rgb
,
rgb_to_hsv
from
typing
import
Tuple
import
pygame
from
math
import
tau
def
hsv_to_rgb
(
h
:
float
,
s
:
float
,
v
:
float
)
->
Tuple
[
float
,
float
,
float
]:
color
=
pygame
.
Color
(
0
)
color
.
hsva
=
((
h
%
tau
)
/
tau
*
360
,
s
*
100
,
v
*
100
,
100
)
return
color
.
normalize
()[:
3
]
def
rgb_to_hsv
(
r
:
float
,
g
:
float
,
b
:
float
)
->
Tuple
[
float
,
float
,
float
]:
r
=
min
(
1
,
max
(
0
,
r
))
g
=
min
(
1
,
max
(
0
,
g
))
b
=
min
(
1
,
max
(
0
,
b
))
color
=
pygame
.
Color
(
r
,
g
,
b
)
h
,
s
,
v
,
a
=
color
.
hsva
return
(
h
/
360
*
tau
,
s
/
100
,
v
/
100
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment