Search Results

by mparadis
Sun Apr 27, 2025 9:12 am
Forum: macOS
Topic: Phidget control panel won't recognize any phidget sensor.
Replies: 1
Views: 606

Re: Phidget control panel won't recognize any phidget sensor.

When you installed the drivers, did it prompt you to allow connections from Phidgets devices? There was a security feature added to MacOS that blocks USB from extensions until you explicitly allow it. You can read about it and how to allow it here: https://developer.apple.com/library/archive/technot...
by mparadis
Tue Apr 22, 2025 1:27 pm
Forum: General
Topic: Inquiry About Digitizer/DAS Compatibility for PhidgetSpatial Precision 3/3/3 with SeisComP
Replies: 3
Views: 1001

Re: Inquiry About Digitizer/DAS Compatibility for PhidgetSpatial Precision 3/3/3 with SeisComP

Looking at the documentation you linked, it looks like the main purpose of requiring the manufacturer and datalogger is so the proper NRL data can be loaded, which specifies the frequency and sensitivity (volts per m/s2) of the accelerometer. It makes sense this information would be necessary when i...
by mparadis
Tue Apr 22, 2025 10:23 am
Forum: General
Topic: upgrading to phidget 22: Stepper 1063, digital input
Replies: 3
Views: 8487

Re: upgrading to phidget 22: Stepper 1063, digital input

1) Correct, the same issue will be there on the 1067, since the retaining of properties was a feature of Phidget21. 2) Adding an Encoder will not change the behavior, since the encoder position in Phidget22 will also be reset to 0 when the channel is closed. 3) Yes, in Phidget22 the only option is t...
by mparadis
Wed Apr 16, 2025 9:49 am
Forum: General
Topic: MotorPositionController "busy"
Replies: 4
Views: 1101

Re: MotorPositionController "busy"

Using the DutyCycle update event is the simplest way to check if the motor is still moving. If your dutycyle is still non-zero at the end of the move, there are a few things you can do: Set a deadband- this creates a buffer zone on either side of the target position where the motor will stop moving,...
by mparadis
Tue Apr 15, 2025 12:57 pm
Forum: General
Topic: Inquiry About Digitizer/DAS Compatibility for PhidgetSpatial Precision 3/3/3 with SeisComP
Replies: 3
Views: 1001

Re: Inquiry About Digitizer/DAS Compatibility for PhidgetSpatial Precision 3/3/3 with SeisComP

The PhidgetSpatial communicates its data by sending USB packets to the computer or Raspberry Pi, and then our drivers take those packets and make the data available to your program via API events and calls. I don't have any experience with this seedlink- is there some kind of software interface that...
by mparadis
Wed Apr 02, 2025 8:28 am
Forum: General
Topic: Upgrading PC from Windows 7, 32 bit to Win 11, 64 bit
Replies: 3
Views: 6124

Re: Upgrading PC from Windows 7, 32 bit to Win 11, 64 bit

You can find both Phidget21 Windows installers on this page:
https://www.phidgets.com/docs21/OS_-_Wi ... _Downloads
by mparadis
Thu Mar 27, 2025 9:31 am
Forum: All Other Phidgets
Topic: HUM1001 - Node Red settings?
Replies: 2
Views: 6097

Re: HUM1001 - Node Red settings?

Those settings are for thermocouple channels, so they don't apply to the HUM1001. You should get normal temperature data without setting anything in the node. The way the node-red library is written, it shows all possible properties for a channel class even if they are unsupported.
by mparadis
Thu Feb 13, 2025 3:09 pm
Forum: All Other Phidgets
Topic: Simplest, easiest way to control one relay
Replies: 1
Views: 28038

Re: Simplest, easiest way to control one relay

The HUB0007 and OUT1000 both look to be supported by Artisan , so this should be the simplest solution. Just make sure that the OUT1000's specifications are enough for your solenoid. It can provide about 10mA of current at 4V. If you need more than that, you'll want to use a relay to switch an exter...
by mparadis
Thu Feb 13, 2025 2:31 pm
Forum: All Other Phidgets
Topic: Difference in Drift when using Phidget Control Panel vs. Python
Replies: 4
Views: 72498

Re: Difference in Drift when using Phidget Control Panel vs. Python

Should I be doing something different? Our environment is subject to occasionally fairly significant magnetic interference which makes anything using the magnetometer unpredictable, so IMU is our preference for now. Hello, I have exactly the same problem with the same configuration. Can you please ...
by mparadis
Thu Jan 23, 2025 10:42 am
Forum: Python
Topic: PhidgetException 0x03 (Timed Out) with 3522_0 IR Adapter
Replies: 2
Views: 50957

Re: PhidgetException 0x03 (Timed Out) with 3522_0 IR Adapter

You need to set isHubPortDevice to "True", because the 1101 is a simple VoltageRatio device, not a VINT device. You can also avoid the conversion from voltage to distance by using setSensorType: sensor.setSensorType(VoltageRatioSensorType.SENSOR_TYPE_1101_SHARP_2Y0A02) And then use getSens...