th7/ports/core.go

12 lines
203 B
Go
Raw Normal View History

2022-11-12 14:20:29 +00:00
package ports
import "th7/data/core"
type CorePort interface {
GetChannel(int) (core.Channel, error)
2022-11-12 22:43:16 +00:00
GetChannels() ([]core.Channel, error)
2022-11-12 14:20:29 +00:00
GetVref() float64
GetVadj() float64
GetPivdd() float64
}