├── .gitignore ├── README.md ├── cheerlights ├── .gitignore ├── Dockerfile ├── Dockerfile.old ├── README.md ├── app.go └── cheerlights.go ├── cputemp ├── .gitignore ├── README.md └── app.go ├── jsonclient ├── .gitignore ├── app.go └── sample.json ├── progress ├── Dockerfile ├── README.md └── app.go ├── random_blink ├── .gitignore ├── Dockerfile ├── README.md └── app.go ├── random_blink_colours ├── .gitignore ├── Dockerfile ├── README.md └── app.go ├── resistor_clock ├── .gitignore ├── Dockerfile ├── README.md └── app.go ├── solid_colours ├── .gitignore ├── Dockerfile ├── README.md └── app.go ├── solid_colours_brightness ├── .gitignore ├── Dockerfile ├── README.md └── app.go ├── spacecount ├── .gitignore ├── Dockerfile ├── README.md ├── app.go └── space.go └── sysfs ├── cheerlights ├── .gitignore ├── README.md ├── app.go └── cheerlights.go ├── progress ├── .gitignore ├── Dockerfile ├── Dockerfile.build ├── README.md ├── app.go └── build.sh ├── redis_sender ├── Dockerfile ├── Dockerfile.build ├── app.go └── build.sh └── redis_view ├── .gitignore ├── Dockerfile ├── Dockerfile.build ├── README.md ├── app.go └── build.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/README.md -------------------------------------------------------------------------------- /cheerlights/.gitignore: -------------------------------------------------------------------------------- 1 | cheerlights 2 | -------------------------------------------------------------------------------- /cheerlights/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cheerlights/Dockerfile -------------------------------------------------------------------------------- /cheerlights/Dockerfile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cheerlights/Dockerfile.old -------------------------------------------------------------------------------- /cheerlights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cheerlights/README.md -------------------------------------------------------------------------------- /cheerlights/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cheerlights/app.go -------------------------------------------------------------------------------- /cheerlights/cheerlights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cheerlights/cheerlights.go -------------------------------------------------------------------------------- /cputemp/.gitignore: -------------------------------------------------------------------------------- 1 | cputemp 2 | -------------------------------------------------------------------------------- /cputemp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cputemp/README.md -------------------------------------------------------------------------------- /cputemp/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/cputemp/app.go -------------------------------------------------------------------------------- /jsonclient/.gitignore: -------------------------------------------------------------------------------- 1 | jsonclient 2 | 3 | -------------------------------------------------------------------------------- /jsonclient/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/jsonclient/app.go -------------------------------------------------------------------------------- /jsonclient/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/jsonclient/sample.json -------------------------------------------------------------------------------- /progress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/progress/Dockerfile -------------------------------------------------------------------------------- /progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/progress/README.md -------------------------------------------------------------------------------- /progress/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/progress/app.go -------------------------------------------------------------------------------- /random_blink/.gitignore: -------------------------------------------------------------------------------- 1 | random_blink -------------------------------------------------------------------------------- /random_blink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink/Dockerfile -------------------------------------------------------------------------------- /random_blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink/README.md -------------------------------------------------------------------------------- /random_blink/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink/app.go -------------------------------------------------------------------------------- /random_blink_colours/.gitignore: -------------------------------------------------------------------------------- 1 | random_blink_colours -------------------------------------------------------------------------------- /random_blink_colours/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink_colours/Dockerfile -------------------------------------------------------------------------------- /random_blink_colours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink_colours/README.md -------------------------------------------------------------------------------- /random_blink_colours/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/random_blink_colours/app.go -------------------------------------------------------------------------------- /resistor_clock/.gitignore: -------------------------------------------------------------------------------- 1 | resistor_clock -------------------------------------------------------------------------------- /resistor_clock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/resistor_clock/Dockerfile -------------------------------------------------------------------------------- /resistor_clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/resistor_clock/README.md -------------------------------------------------------------------------------- /resistor_clock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/resistor_clock/app.go -------------------------------------------------------------------------------- /solid_colours/.gitignore: -------------------------------------------------------------------------------- 1 | solid_colours -------------------------------------------------------------------------------- /solid_colours/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours/Dockerfile -------------------------------------------------------------------------------- /solid_colours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours/README.md -------------------------------------------------------------------------------- /solid_colours/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours/app.go -------------------------------------------------------------------------------- /solid_colours_brightness/.gitignore: -------------------------------------------------------------------------------- 1 | solid_colours_brightness 2 | -------------------------------------------------------------------------------- /solid_colours_brightness/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours_brightness/Dockerfile -------------------------------------------------------------------------------- /solid_colours_brightness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours_brightness/README.md -------------------------------------------------------------------------------- /solid_colours_brightness/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/solid_colours_brightness/app.go -------------------------------------------------------------------------------- /spacecount/.gitignore: -------------------------------------------------------------------------------- 1 | spacecount 2 | -------------------------------------------------------------------------------- /spacecount/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/spacecount/Dockerfile -------------------------------------------------------------------------------- /spacecount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/spacecount/README.md -------------------------------------------------------------------------------- /spacecount/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/spacecount/app.go -------------------------------------------------------------------------------- /spacecount/space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/spacecount/space.go -------------------------------------------------------------------------------- /sysfs/cheerlights/.gitignore: -------------------------------------------------------------------------------- 1 | cheerlights 2 | -------------------------------------------------------------------------------- /sysfs/cheerlights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/cheerlights/README.md -------------------------------------------------------------------------------- /sysfs/cheerlights/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/cheerlights/app.go -------------------------------------------------------------------------------- /sysfs/cheerlights/cheerlights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/cheerlights/cheerlights.go -------------------------------------------------------------------------------- /sysfs/progress/.gitignore: -------------------------------------------------------------------------------- 1 | progress 2 | -------------------------------------------------------------------------------- /sysfs/progress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/progress/Dockerfile -------------------------------------------------------------------------------- /sysfs/progress/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/progress/Dockerfile.build -------------------------------------------------------------------------------- /sysfs/progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/progress/README.md -------------------------------------------------------------------------------- /sysfs/progress/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/progress/app.go -------------------------------------------------------------------------------- /sysfs/progress/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/progress/build.sh -------------------------------------------------------------------------------- /sysfs/redis_sender/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY app / 3 | 4 | CMD ["/app"] 5 | -------------------------------------------------------------------------------- /sysfs/redis_sender/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_sender/Dockerfile.build -------------------------------------------------------------------------------- /sysfs/redis_sender/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_sender/app.go -------------------------------------------------------------------------------- /sysfs/redis_sender/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_sender/build.sh -------------------------------------------------------------------------------- /sysfs/redis_view/.gitignore: -------------------------------------------------------------------------------- 1 | redis_view 2 | 3 | -------------------------------------------------------------------------------- /sysfs/redis_view/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY app / 3 | 4 | CMD ["/app"] 5 | -------------------------------------------------------------------------------- /sysfs/redis_view/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_view/Dockerfile.build -------------------------------------------------------------------------------- /sysfs/redis_view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_view/README.md -------------------------------------------------------------------------------- /sysfs/redis_view/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_view/app.go -------------------------------------------------------------------------------- /sysfs/redis_view/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexellis/blinkt_go_examples/HEAD/sysfs/redis_view/build.sh --------------------------------------------------------------------------------