Go to file
2019-06-16 23:53:33 +02:00
cmd feat(cmd/daemon): new flag to set clean cache interval 2019-06-16 23:15:26 +02:00
pkg fix(pkg/rgbled): description for exported functions 2019-06-16 23:47:41 +02:00
.editorconfig
.gitattributes
.gitignore
.travis.yml
go.mod feat(cmd/rgb-led): add subcommands to operate with rgb-leds 2019-06-16 13:00:50 +02:00
go.sum feat(cmd/rgb-led): add subcommands to operate with rgb-leds 2019-06-16 13:00:50 +02:00
main.go
Makefile fix(Makefile): delete build container and container runtime 2019-06-16 23:39:34 +02:00
README.md fix(README): describe build options for arm and amd architectures 2019-06-16 23:53:33 +02:00

flucky Build Status

Flucky is a lightweight program written in go for reading data from sensors with a raspberry pi.

Compiling

Flucky can be compiled directly with go.

$ go get -u github.com/go-flucky/flucky

Alternatively you can checkout this repository and compile it with make for your architecture. For examample for a raspberry pi with arm architecture.

$ make build
$ make build GOARCH=arm # for raspberry-pi

If you have installed docker oder podman but not go, you can compile the source code via one of the container runtimes.

$ make container-build
$ make container-build GOARCH=arm  # for raspberry-pi