Skip to content

jrcichra/gophidgets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gophidgets Go Report Card

Golang bindings for the Phidgets C library

Release Notes

  • 11/24/2022 - VoltageInput and VoltageInputRatio GetValue() always called getVoltage(), not getSensorValue(). I broke out the functions to match the Phidget's library names since VoltageInput and VoltageRatioInput are used in different ways based on the hardware.

Install

go get "github.com/jrcichra/gophidgets/phidgets"

Example

t := phidgets.PhidgetTemperatureSensor{}
t.Create()
t.SetIsRemote(true)
t.SetDeviceSerialNumber(11111)
t.SetHubPort(0)
err = t.OpenWaitForAttachment(2 * time.Second)
if err != nil {
    panic(err)
}
//Loop forever
for {
    fmt.Println("Temperature is", t.GetValue()*9.0/5.0+32)
    time.Sleep(time.Duration(5) * time.Second)
}

Releases

No releases published

Packages

 
 
 

Contributors 4

  •  
  •  
  •  
  •  

Languages