Skip to content

Go library for reading hydrometer data from Tilt brewing sensors.

License

Notifications You must be signed in to change notification settings

alexhowarth/go-tilt

Repository files navigation

Tilt API in Go

GoDoc Go Report Card

This package provides a library for reading data from Tilt sensors.

Tilt sensors are devices for brewers that read specific gravity and temperature during fermentation.

Installation

go get github.com/alexhowarth/go-tilt

Usage

s := tilt.NewScanner()
s.Scan(20 * time.Second)

for _, t := range s.Tilts() {
	t.Print()
}

Compatibility

This project currently uses a specific fork of go-ble that is compatible with both Linux and macOS.

Cross compiling

To create a binary for use on a Raspberry Pi, simply build it for ARM and copy the binary (no other dependencies are required).

env GOOS=linux GOARCH=arm go build examples/scanner/scanner.go

About

Go library for reading hydrometer data from Tilt brewing sensors.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages