th7/ports/core.go

15 lines
222 B
Go
Raw Permalink Normal View History

2022-11-12 14:20:29 +00:00
package ports
2022-12-05 13:19:54 +00:00
import (
"th7/data/core"
)
2022-11-12 14:20:29 +00:00
type CorePort interface {
GetChannel(int) (core.Channel, error)
2022-11-16 20:07:38 +00:00
GetChannels() []core.Channel
2022-11-12 14:20:29 +00:00
GetVref() float64
GetVadj() float64
GetPivdd() float64
2022-12-05 13:19:54 +00:00
GetRatio() core.Ratio
2022-11-12 14:20:29 +00:00
}