-
Notifications
You must be signed in to change notification settings - Fork 957
Closed
Description
there is wrong condition on lines
pico-examples/picoboard/blinky/blinky.c
Line 57 in 2fb08a0
if (*str >= 'A' && *str < 'Z') { |
and
pico-examples/picoboard/blinky/blinky.c
Line 59 in 2fb08a0
} else if (*str >= 'a' && *str < 'z') { |
must be
if (*str >= 'A' && *str <= 'Z') {
and
} else if (*str >= 'a' && *str <= 'z') {
respectively
Metadata
Metadata
Assignees
Labels
No labels