mirror of
https://github.com/kidoman/embd
synced 2025-07-01 19:18:08 +02:00

It looks like Raspberry pi needs some time to get a digital pin link properly after it is being exported. Sample code to run: ```go package main import ( "fmt" "github.com/kidoman/embd" _ "github.com/kidoman/embd/host/rpi" ) func main() { defer embd.CloseGPIO() fmt.Println(embd.SetDirection(10, embd.Out)) } ``` - before the change, the output is: `open /sys/class/gpio/gpio10/direction: permission denied` - after the change, the output is `<nil>` Close #52