robocar-pca9685/vendor/periph.io/x/conn/v3
2022-01-02 23:29:08 +01:00
..
driver chore: bump periph.io dependencies 2022-01-02 23:29:08 +01:00
gpio build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
i2c build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
physic build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
pin build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
spi build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
.gohci.yml chore: bump periph.io dependencies 2022-01-02 23:29:08 +01:00
AUTHORS build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
codecov.yml build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
conn.go build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
CONTRIBUTING.md build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
CONTRIBUTORS build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
doc.go build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
LICENSE build: upgrade to go 1.17 and dependencies 2021-09-01 21:34:31 +02:00
README.md chore: bump periph.io dependencies 2022-01-02 23:29:08 +01: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"
    "periph.io/x/host/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.