package
0.0.0-20181010003844-c75e8edb0d6f
Repository: https://github.com/jdevelop/golang-rpi-extras.git
Documentation: pkg.go.dev

# README

Example

package main

import lcd "github.com/jdevelop/golang-rpi-extras/lcd_hd44780"

func main() {
        // Use BCM PIN numbering
        // 4 pins for data transfer
        // RS pin
        // E pin
	rpi, err := lcd.NewLCD4([]int{27, 22, 23, 24}, 17, 18)

	if err != nil {
		panic(err.Error())
	}

	rpi.Cls()
	rpi.Print("-=   HELLO   =-")
	rpi.SetCursor(1, 0)
	rpi.Print("-=   WORLD  =-")

}

# Functions

No description provided by the author

# Constants

start of line 2.

# Structs

No description provided by the author

# Interfaces

No description provided by the author