Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 441 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 441 Bytes

Read value from ADT MCP3008

Example

package main

import (
        "time"
        "fmt"
        mcp "github.com/jdevelop/golang-rpi-extras/mcp3008"
        )

func main() {

	const channel = 0

	// /dev/spidev0.0
	mcp, err := mcp.NewMCP3008(0, 0, mcp.Mode0, 500000)
	
	if err != nil {
		panic(err.Error())
	}

	for {
		fmt.Println(mcp.Measure(channel))
		time.Sleep(time.Second)
	}

}