Skip to content

Commit bbf28eb

Browse files
Jonathan Pallant (42 Technology)Yatekii
authored andcommitted
LEDs default to off.
1 parent 16c255f commit bbf28eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boards/nRF9160-DK/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ pub struct Led(Pin<Output<PushPull>>);
600600

601601
impl Led {
602602
fn new<Mode>(pin: Pin<Mode>) -> Self {
603-
Led(pin.into_push_pull_output(Level::High))
603+
Led(pin.into_push_pull_output(Level::Low))
604604
}
605605

606606
/// Enable the LED

0 commit comments

Comments
 (0)