Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philip A Levis
EE185
Commits
b4c96fc9
Commit
b4c96fc9
authored
Jun 13, 2020
by
Philip Levis
Browse files
Fix deprecated warning.
parent
4d6c4418
Changes
1
Hide whitespace changes
Inline
Side-by-side
software/ui/src/engine/TestPattern.java
View file @
b4c96fc9
...
...
@@ -195,10 +195,10 @@ class ColorWall extends FlightPattern {
final
BoundedParameter
length
=
new
BoundedParameter
(
"LENGTH"
,
1
,
50
,
1
);
ColorWall
(
LX
lx
)
{
super
(
lx
);
addParameter
(
speed
);
addParameter
(
angle
);
addParameter
(
color
);
addParameter
(
length
);
addParameter
(
"ColorWall_SPEED"
,
speed
);
addParameter
(
"ColorWall_ANGLE"
,
angle
);
addParameter
(
"ColorWall_COLOR"
,
color
);
addParameter
(
"ColorWall_LENGTH"
,
length
);
addModulator
(
position
).
start
();
}
...
...
@@ -226,4 +226,4 @@ class ColorWall extends FlightPattern {
}
}
}
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment