Skip to content

Commit

Permalink
Add new LED config to blink sample (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzfima authored Jul 22, 2024
1 parent 7aac5f6 commit b49a3b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions samples/Blinky/Blinky/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ public static void Main()
// RAK2305
//GpioPin led = s_GpioController.OpenPin(Gpio.IO18, PinMode.Output); // LED Green (Test LED) on device

// Aliexpress ESP32-WROOM32, GPIO2 - onboard not-power LED
// GpioPin led = s_GpioController.OpenPin(2, PinMode.Output);

led.Write(PinValue.Low);

while (true)
Expand Down

0 comments on commit b49a3b6

Please sign in to comment.