Skip to content

Commit

Permalink
Update README.go
Browse files Browse the repository at this point in the history
  • Loading branch information
gandaldf committed May 11, 2021
1 parent 4badb9c commit 8da719d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
# Binaries for programs and plugins
*.o
*.a
*.exe
*.exe~
*.dll
*.so
*.dylib
*-meta.json
*.txt
*.crt
*.key
.DS_Store

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Special folders
gitignore/

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
![logo](https://user-images.githubusercontent.com/3932259/59157501-04243300-8aac-11e9-8189-932a0ed44f2a.png)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/gandaldf/rpi/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/gandaldf/rpi.svg?branch=master)](https://travis-ci.org/gandaldf/rpi)
[![Go Report Card](https://goreportcard.com/badge/github.com/gandaldf/rpi)](https://goreportcard.com/report/github.com/gandaldf/rpi)
[![GoDoc](https://godoc.org/github.com/gandaldf/rpi?status.svg)](https://godoc.org/github.com/gandaldf/rpi)
[![Go Reference](https://pkg.go.dev/badge/github.com/gandaldf/rpi.svg)](https://pkg.go.dev/github.com/gandaldf/rpi)
[![Version](https://img.shields.io/github/tag/gandaldf/rpi.svg?color=blue&label=version)](https://github.com/gandaldf/rpi/releases)

# RPi
Personal Golang repository for some Raspberry Pi hardware.

### e-Papers
### e-Papers:
* **[epd7in5](/epd7in5)**: 7.5inch e-paper ([wiki](https://www.waveshare.com/wiki/7.5inch_e-Paper_HAT))

## Installing
## Installation:
```
go get github.com/gandaldf/rpi/
go get -u github.com/gandaldf/rpi/
```
11 changes: 6 additions & 5 deletions epd7in5/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
![7 5inch-e-paper-hat-4](https://user-images.githubusercontent.com/3932259/58586467-659e0380-825b-11e9-9942-f75c6dd7584f.jpg)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/gandaldf/rpi/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/gandaldf/rpi.svg?branch=master)](https://travis-ci.org/gandaldf/rpi)
[![Go Report Card](https://goreportcard.com/badge/github.com/gandaldf/rpi)](https://goreportcard.com/report/github.com/gandaldf/rpi)
[![GoDoc](https://godoc.org/github.com/gandaldf/rpi?status.svg)](https://godoc.org/github.com/gandaldf/rpi)
[![Go Reference](https://pkg.go.dev/badge/github.com/gandaldf/rpi.svg)](https://pkg.go.dev/github.com/gandaldf/rpi)
[![Version](https://img.shields.io/github/tag/gandaldf/rpi.svg?color=blue&label=version)](https://github.com/gandaldf/rpi/releases)

# 7.5inch e-Paper
This is an interface for the Waveshare 7.5inch e-paper display ([wiki](https://www.waveshare.com/wiki/7.5inch_e-Paper_HAT)).
Expand All @@ -14,12 +15,12 @@ Tested on Raspberry Pi 3B / 3B+ with Raspbian Stretch.

For more information please check the _examples_ and _doc_ folders.

## Installing
## Installation:
```
go get github.com/gandaldf/rpi/
go get -u github.com/gandaldf/rpi/
```

## Load an image
## Load an image:
```golang
func main() {
log.Println("Starting...")
Expand Down

0 comments on commit 8da719d

Please sign in to comment.