Search Results: Patrick

Products | Content | Learn | Forums

Searched query: patrick

by Patrick
Fri Feb 10, 2023 11:25 am
Forum: General
Topic: DC stepper control using a DCC1002 module - position reached
Replies: 2
Views: 11703

Re: DC stepper control using a DCC1002 module - position reached

... to multiple channels in parallel. You'll need to monitor the PositionChange or DutyCycleUpdate events to determine when it's reached position. -Patrick
by Patrick
Fri Feb 10, 2023 11:13 am
Forum: General
Topic: Error in Windows Application log
Replies: 7
Views: 84232

Re: Error in Windows Application log

I think you must have an old version on Bonjour installed. That limit was increased to 1-15 characters ~15 years ago.

-Patrick
by Patrick
Wed Feb 08, 2023 11:06 am
Forum: General
Topic: Hub5000 - visible on control panel, unable to find through program
Replies: 2
Views: 19158

Re: Hub5000 - visible on control panel, unable to find through program

... any addressing parameters. Maybe, enable logging in the library? Make sure your python library is up to date, as well at the HUB5000 firmware. -Patrick
by Patrick
Wed Feb 08, 2023 10:26 am
Forum: InterfaceKits
Topic: Smaller or custom VINT board for single device
Replies: 5
Views: 23446

Re: Smaller or custom VINT board for single device

The USB protocol to the VINT Hubs is 'documented' in the open source libraries. The VINT protocol itself is proprietary and completely undocumented publicly.

-Patrick
by Patrick
Thu Feb 02, 2023 12:26 pm
Forum: C#.NET
Topic: Non-Blocking Input Events
Replies: 2
Views: 28233

Re: Non-Blocking Input Events

If you're interacting with a UI I'd use a BackgroundWorker, otherwise use a ThreadPool or Thread.

If you don't care about events at all until your task is finished, you can just deregister/register for the StateChange event at the start/end of your task.

-Patrick
by Patrick
Tue Jan 24, 2023 11:33 am
Forum: General
Topic: PhidgetInterfaceKit not found, success with VINT hub
Replies: 1
Views: 8329

Re: PhidgetInterfaceKit not found, success with VINT hub

The 1018 doesn't support VINT Phidgets - those ports are for connecting analog sensors. You'll need a VINT Hub to talk to your RTD Phidget.

-Patrick
by Patrick
Fri Jan 06, 2023 11:21 am
Forum: C#.NET
Topic: When Unity3d Editor is executed, phidget open error is issued.
Replies: 2
Views: 26300

Re: When Unity3d Editor is executed, phidget open error is issued.

... before exiting your program. Have a look at the last code block here: https://www.phidgets.com/?view=articles&article=UsingPhidgetsWithUnity -Patrick
by Patrick
Wed Jan 04, 2023 12:29 pm
Forum: All Other Phidgets
Topic: hub5000 + antenna?
Replies: 4
Views: 28229

Re: hub5000 + antenna?

You can't use the MHF4 antenna connector to connect an external antenna because there is already a chip antenna connected - you would need to cut the trace to the chip antenna for it to work.

-Patrick
by Patrick
Tue Jan 03, 2023 11:27 am
Forum: Linux
Topic: Autostart of the phidget22networkserver fails
Replies: 2
Views: 14664

Re: Autostart of the phidget22networkserver fails

... # Description: Phidget network server for accessing Phidgets over the network. ### END INIT INFO Also, you shouldn't have sudo in the init-script -Patrick
by Patrick
Wed Dec 21, 2022 4:02 pm
Forum: Java
Topic: NoClassDefFoundError: com/phidget22/Parity
Replies: 1
Views: 23990

Re: NoClassDefFoundError: com/phidget22/Parity

Your phidget22 C library and phidget22.jar are out of sync. Parity is an unused class which was renamed DataAdapterParity.

Update your installed libphidet22/libphidget22java.

-Patrick