Search Results

by LucasP
Wed Jan 31, 2018 10:40 am
Forum: Linux
Topic: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python
Replies: 20
Views: 26822

Re: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python

There are both synchronous and asynchronous versions of setState available, check the API for more information. If you are setting the state of one channel and another is responding, make sure your channel matching/addressing is correct. Also note that when a channel is closed, it will reset. There ...
by LucasP
Mon Jan 22, 2018 10:42 am
Forum: Linux
Topic: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python
Replies: 20
Views: 26822

Re: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python

The code sample you provided for the multiple relays was correct, you just need to make the modification I suggested in my previous comment.
by LucasP
Sun Jan 21, 2018 1:58 pm
Forum: Linux
Topic: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python
Replies: 20
Views: 26822

Re: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python

Under the API tab there is a Software Objects section that will tell you the API to use, and the channels associated with it. Screen Shot 2018-01-21 at 1.04.04 PM.png Your code should then look like this: ... # relay 0 ch0 = DigitalOutput() ch0.setChannel(0) ch0.openWaitForAttachment(5000) # relay 1...
by LucasP
Sat Jan 20, 2018 4:49 pm
Forum: Linux
Topic: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python
Replies: 20
Views: 26822

Re: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python

There is a getState method available. Navigate to the API tab on the product page (link below) and select Python from the drop-down list for all available methods and descriptions.

https://www.phidgets.com/?tier=3&catid= ... rodid=1020
by LucasP
Sat Jan 20, 2018 11:52 am
Forum: Linux
Topic: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python
Replies: 20
Views: 26822

Re: PhidgetInterfaceKit 0/0/4 USB on raspberry pi3 - Python

You should follow the Getting Started section on Linux OS Page:
https://www.phidgets.com/docs/OS_-_Linu ... with_Linux

After you have the libraries installed correctly, you should then follow the Linux section on the Python page:
https://www.phidgets.com/docs/Language_-_Python#Linux
by LucasP
Wed Jan 03, 2018 9:23 pm
Forum: General
Topic: differential pressure sensor
Replies: 5
Views: 4565

Re: differential pressure sensor

You should only be using the VoltageRatioInput API. The documentation is referring to the Sensor Type (see VoltageRatioInput API). By matching the Sensor Type to your analog sensor, the correct formula will automatically be applied to data when you get the SensorValue or subscribe to the SensorChang...
by LucasP
Wed Nov 08, 2017 6:01 pm
Forum: Other
Topic: Home Fuel Oil Boiler/Furnace Monitor
Replies: 1
Views: 20482

Re: Home Fuel Oil Boiler/Furnace Monitor

Great project. Thanks for sharing!

Have you updated to Phidget22 yet?
by LucasP
Wed Oct 18, 2017 4:57 pm
Forum: General
Topic: clone SBC
Replies: 2
Views: 7330

Re: clone SBC

There is now a section on the Phidget SBC OS page about cloning your SD card for the SBC4:
https://www.phidgets.com/docs/OS_-_Phid ... to_SD_card
by LucasP
Mon Oct 16, 2017 10:45 am
Forum: iOS
Topic: Having trouble with example file linking
Replies: 1
Views: 18613

Re: Having trouble with example file linking

Use $HOME instead of ~ in your path.
by LucasP
Thu Jun 22, 2017 1:17 pm
Forum: C#.NET
Topic: Standalone User Projects with C#
Replies: 1
Views: 6086

Re: Standalone User Projects with C#