th7/ports/pcb.go
2022-11-12 17:11:20 +00:00

14 lines
190 B
Go

package ports
import (
"th7/data/pcb"
)
type PCBPort interface {
Deinit() error
UpdateTable()
GetTable() pcb.Table
ReadChannel(int) (float64, error)
ReadPCBTemp() (float64, error)
}