robocar-led/vendor/periph.io/x/conn/v3
2023-10-15 12:31:06 +02:00
..
driver chore: bump periph.io dependencies 2022-01-02 23:37:01 +01:00
gpio chore: upgrade dependencies 2023-10-15 12:31:06 +02:00
i2c build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
physic chore: upgrade dependencies 2023-10-15 12:31:06 +02:00
pin build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
spi chore: upgrade dependencies 2023-10-15 12:31:06 +02:00
.gohci.yml chore: bump periph.io dependencies 2022-01-02 23:37:01 +01:00
AUTHORS build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
codecov.yml build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
conn.go build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
CONTRIBUTING.md build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
CONTRIBUTORS build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
doc.go chore: upgrade dependencies 2023-10-15 12:31:06 +02:00
LICENSE build: upgrade periph.io dependencies 2021-09-01 21:41:28 +02:00
README.md chore: upgrade dependencies 2023-10-15 12:31:06 +02:00

periph - Peripherals I/O in Go

Documentation is at https://periph.io

Join us for a chat on gophers.slack.com/messages/periph, get an invite here.

mascot

PkgGoDev codecov

Example

Blink a LED:

package main

import (
    "time"
    "periph.io/x/conn/v3/gpio"
    "periph.io/x/host/v3"
    "periph.io/x/host/v3/rpi"
)

func main() {
    host.Init()
    t := time.NewTicker(500 * time.Millisecond)
    for l := gpio.Low; ; l = !l {
        rpi.P1_33.Out(l)
        <-t.C
    }
}

Curious? Look at supported devices for more examples!

Authors

periph was initiated with ❤️ and passion by Marc-Antoine Ruel. The full list of contributors is in AUTHORS and CONTRIBUTORS.

Disclaimer

This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.

This project is not affiliated with the Go project.