Search Results

by Patrick
Fri Oct 06, 2023 10:48 am
Forum: General
Topic: Help: Cannot Install Phidget on a random Window 7 computer
Replies: 8
Views: 20085

Re: Help: Cannot Install Phidget on a random Window 7 computer

What type of Phidgets are you using?
by Patrick
Thu Oct 05, 2023 11:18 am
Forum: General
Topic: Help: Cannot Install Phidget on a random Window 7 computer
Replies: 8
Views: 20085

Re: Help: Cannot Install Phidget on a random Window 7 computer

Is the Windows 7 PC fully up to date?

What Phidgets are you attaching?

In the control panel, Help->Open Logs Folder, and post the contents of Phidget22Manager.log

-Patrick
by Patrick
Mon Oct 02, 2023 12:37 pm
Forum: Linux
Topic: Need help coding in python for a magnetic limit switch
Replies: 1
Views: 13186

Re: Need help coding in python for a magnetic limit switch

You'll need to set IsHubPortDevice to true.

-Patrick
by Patrick
Mon Oct 02, 2023 12:35 pm
Forum: General
Topic: PC cannot boot when plugging Phidget encoder
Replies: 3
Views: 14111

Re: PC cannot boot when plugging Phidget encoder

This sounds like a BIOS incompatibility. I'm not sure of exactly how to fix it, but have a look in your BIOS for settings related to USB, HID (Human interface devices), keyboard, etc. and see if you can change something to get it to boot.

-Patrick
by Patrick
Thu Sep 28, 2023 10:37 am
Forum: Python
Topic: Detecting sensors attached to VINT hub
Replies: 2
Views: 16260

Re: Detecting sensors attached to VINT hub

Are you using analog sensors or VINT devices? You can use the Phidget manager to enumerate all channels, and get device properties per channel. A VINT Hub will list all of the hubs port modes as well as any attached VINT devices. If you use analog sensors, there isn't any way to read out the sensor ...
by Patrick
Tue Sep 19, 2023 4:36 pm
Forum: Phidgets
Topic: Remote Vint Hub ? POE version
Replies: 4
Views: 55158

Re: Remote Vint Hub ? POE version

In this case, you'll need to configure the HUB and laptop ahead of time to have static IPs on the same subnet.

-Patrick
by Patrick
Tue Sep 19, 2023 4:35 pm
Forum: C#.NET
Topic: dotnet7 not supported?
Replies: 3
Views: 17018

Re: dotnet7 not supported?

Can you post the output of lsusb?

Try increasing the open timeout?

Enable logging in the library and post the output?

-Patrick
by Patrick
Fri Sep 08, 2023 1:04 pm
Forum: Phidgets
Topic: NEW 4X Thermocouple TMP1101_1
Replies: 2
Views: 5735

Re: NEW 4X Thermocouple TMP1101_1

Hi, TMP1101_1 has not been upgraded for faster data rates. The shield icon on the latest rev means that it supports longer cables and improved immunity. Some new VINT devices also support higher speeds, but this kind of spec change would also result in a new rev of the product - ie TMP1101_2. -Patrick
by Patrick
Fri Sep 08, 2023 12:55 pm
Forum: C#.NET
Topic: dotnet7 not supported?
Replies: 3
Views: 17018

Re: dotnet7 not supported?

Hi, On Linux, you'll either have to run your program as root (sudo), or install the udev rule to allow access to Phidgets as a regular user. You could try running as root just to confirm whether you can open the Phidget. If you are still having issues, enable logging in the library and see if there ...
by Patrick
Fri Sep 08, 2023 12:51 pm
Forum: Python
Topic: about automatically run python code
Replies: 1
Views: 14014

Re: about automatically run python code

Hi,

You need to add to the start of your .py file:

#!/usr/bin/env python3

-Patrick