예제 #1
0
파일: io.go 프로젝트: pigswillfly/RealTime
func IO_Read_Analog(channel int) int {
	return C.io_read_analog(C.int(channel))
}
예제 #2
0
파일: io.go 프로젝트: CzarXerxes/Sanntid
func Io_read_analog(channel int) int {
	return int(C.io_read_analog(C.int(channel)))
}
예제 #3
0
func io_readAnalog(channel int) int {
	n, err := C.io_read_analog(C.int(channel))
	checkError(err)
	return int(n)
}