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