Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Revol
firmware
Commits
546a203c
Verified
Commit
546a203c
authored
Jun 25, 2019
by
Rahix
Browse files
fix(pycardium): Fix not properly checking type of color
Signed-off-by:
Rahix
<
rahix@rahix.de
>
parent
a9f770a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
pycardium/modules/leds.c
View file @
546a203c
...
...
@@ -6,10 +6,13 @@
static
mp_obj_t
mp_leds_set
(
mp_obj_t
led_in
,
mp_obj_t
color_in
)
{
mp_check_self
(
mp_obj_is_type
(
color_in
,
&
mp_type_list
));
mp_obj_list_t
*
color
=
MP_OBJ_TO_PTR
(
color_in
);
int
led
=
mp_obj_get_int
(
led_in
);
if
(
!
mp_obj_is_type
(
color_in
,
&
mp_type_list
))
{
mp_raise_TypeError
(
"color must be a list"
);
}
mp_obj_list_t
*
color
=
MP_OBJ_TO_PTR
(
color_in
);
if
(
color
->
len
<
3
)
{
mp_raise_ValueError
(
"color list must have 3 elements"
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment