From 8da719d2d160175be71e146b29c4d90339ec2b8b Mon Sep 17 00:00:00 2001 From: gandaldf Date: Tue, 11 May 2021 13:51:38 +0200 Subject: [PATCH] Update README.go --- .gitignore | 19 +++++++++++++++++++ README.md | 11 ++++++----- epd7in5/README.md | 11 ++++++----- 3 files changed, 31 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index f1c181e..2441a5e 100644 --- a/.gitignore +++ b/.gitignore @@ -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? \ No newline at end of file diff --git a/README.md b/README.md index 0e06b61..8c99e87 100644 --- a/README.md +++ b/README.md @@ -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/ ``` diff --git a/epd7in5/README.md b/epd7in5/README.md index 6460751..1aa9288 100644 --- a/epd7in5/README.md +++ b/epd7in5/README.md @@ -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)). @@ -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...")