Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
9209ef73
Commit
9209ef73
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Minor refactorings
parent
26ad8925
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripting/CyanLightSparkling.py
+23
-8
23 additions, 8 deletions
scripting/CyanLightSparkling.py
with
23 additions
and
8 deletions
scripting/CyanLightSparkling.py
+
23
−
8
View file @
9209ef73
...
...
@@ -7,29 +7,44 @@ import random
from
socket
import
*
fps
=
4
pixels
=
24
port
=
4213
randomizeBrightness
=
False
if
len
(
sys
.
argv
)
>
1
:
hosts
=
sys
.
argv
[
1
:]
else
:
hosts
=
[
'
ringclockDOTmake
'
,
'
ringclockDOThack
'
,
'
ringclockDOTelab
'
]
port
=
4213
pixels
=
24
s
=
socket
(
AF_INET
,
SOCK_DGRAM
)
def
cyan
():
r
=
random
.
randint
(
0
,
32
)
g
=
random
.
randint
(
64
,
255
)
return
[
r
,
g
,
int
(
g
/
6
),
0
]
out
=
[
r
,
g
,
int
(
g
/
6
),
0
]
if
randomizeBrightness
:
b
=
random
.
random
()
out
=
[
int
(
px
*
b
)
for
px
in
out
]
return
out
period
=
1
/
fps
while
True
:
data
=
[
1
]
# if fps >= 10:
# data = [1]
# else:
# data = [int( 50 * period )]
data
=
[
int
(
50
*
period
)]
for
_
in
range
(
pixels
):
data
+=
cyan
()
...
...
@@ -40,5 +55,5 @@ while True:
s
.
sendto
(
data
,
(
host
,
port
))
except
:
pass
time
.
sleep
(
0.1
)
time
.
sleep
(
period
)
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