https://github.com/lestrrat-go/epd
[WIP] Port of ePaper HAT binding
https://github.com/lestrrat-go/epd
Last synced: 4 months ago
JSON representation
[WIP] Port of ePaper HAT binding
- Host: GitHub
- URL: https://github.com/lestrrat-go/epd
- Owner: lestrrat-go
- License: mit
- Created: 2018-04-23T05:09:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T22:06:41.000Z (about 7 years ago)
- Last Synced: 2025-01-09T03:41:44.717Z (6 months ago)
- Language: Go
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# epd
Interface to ePaper HAT
# INSTALL
This assumes you are using RaspberryPi Zero W(H)
## Install go for armv6l
```
curl https://dl.google.com/go/go1.10.1.linux-armv6l.tar.gz | sudo tar xz -C /usr/local
```Add the path to Go in your environment, such as `/etc/profile`
```
export PATH=$PATH:/usr/local/go/bin
```## Fetch this repository
If you have not already done so, create `~/go`, which will host all of your Go code.
If you know what you are doing, use `git` to clone the library. Otherwise, use `go get````
go get github.com/lestrrat-go/epd
```## Install dependencies
This may take a while, because, well, you're running on a RP Zero
```
cd ~/go/src/github.com/lestrrat-go/epd
go get -u ./...
```## Run the tests
```
cd ~/go/src/github.com/lestrrat-go/epd
go test .
```