You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devices/mcp472x/example_test.go

48 lines
1.2 KiB
Go

// Copyright 2025 The Periph Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
package mcp472x_test
import (
"log"
"time"
"periph.io/x/conn/v3/i2c/i2creg"
"periph.io/x/conn/v3/physic"
"periph.io/x/devices/v3/mcp472x"
"periph.io/x/host/v3"
)
// Example demonstrating how to initialize the MCP4728 and set an output
// voltage.
func Example() {
if _, err := host.Init(); err != nil {
log.Fatal("Error calling host.init()")
}
bus, err := i2creg.Open("")
if err != nil {
log.Fatal(err)
}
defer bus.Close()
// For a MCP4725, or to use VCC for the reference voltage, specify it as:
// 3_300 * physic.MilliVolt, etc.
dev, err := mcp472x.New(bus, mcp472x.DefaultAddress, mcp472x.MCP4728, mcp472x.MCP4728InternalRef)
if err != nil {
log.Fatal(err)
}
// Program channel 3 to output 512mV
op := mcp472x.SetOutputParam{DAC: 3, V: 512 * physic.MilliVolt, UseInternalRef: true}
err = dev.SetOutput(op)
if err != nil {
log.Println(err)
}
time.Sleep(10 * time.Second)
// Power down the channel
op.V = 0
op.PDMode = mcp472x.PDMode1K
_ = dev.SetOutput(op)
}