Adding a small delay between setup of pins.

This commit is contained in:
Filip Strajnar 2024-09-25 00:12:59 +02:00
parent 97dc1dbaa7
commit 82d7ab5e6f

View file

@ -40,6 +40,7 @@ namespace Proculite.GpioRest.Services
}
_gpioController.OpenPin(pin, pinMode, PinValue.Low);
Thread.Sleep(200);
}
}