th7/ports/pcb.go

14 lines
181 B
Go
Raw Normal View History

2022-11-12 14:20:29 +00:00
package ports
import (
"th7/data/pcb"
)
type PCBPort interface {
Deinit() error
UpdateTable()
GetTable() pcb.Table
2022-11-16 19:53:11 +00:00
ReadChannel(int, float64) float64
ReadPCBTemp() float64
2022-11-12 14:20:29 +00:00
}