Search Results

by mparadis
Wed Nov 20, 2024 1:40 pm
Forum: General
Topic: Help whit my Brushless motor
Replies: 1
Views: 308

Re: Help whit my Brushless motor

Here's how I would approach this problem: If you've never programmed using Phidgets before, you may want to read our page on Phidget Programming Basics . 1. Go to our code sample generator and get sample code for the DCC1100 in the language of your choice. If you don't have any experience programmin...
by mparadis
Fri Nov 01, 2024 9:40 am
Forum: General
Topic: ServoType in Phidget22
Replies: 2
Views: 6095

Re: ServoType in Phidget22

This enumeration no longer exists in Phidget22. Here's the raw data from the Phidget21 source for reference: const CPhidgetServoParameters Phid_Servo_Types[] = { {PHIDGET_SERVO_DEFAULT, 23 * 128/12.0, 243 * 128/12.0, 128/12.0, 50/12.0*16384}, //245.3us(0)-2592us(220), 10.666us/degree, max vel {PHIDG...
by mparadis
Wed Oct 30, 2024 9:38 am
Forum: General
Topic: common timabase
Replies: 1
Views: 1207

Re: common timabase

You are correct- there is no built-in way to synchronize multiple accelerometer Phidgets. The timestamp provided in the event data is accurate for the acceleration data point for that event. The best you could do is keep track of incoming data and interpolate to a standard time frame as data comes i...
by mparadis
Fri Oct 11, 2024 8:38 am
Forum: General
Topic: Connecting to the Phidget 1046?
Replies: 2
Views: 4036

Re: Connecting to the Phidget 1046?

The 1046 is designed to read wheatstone bridge based sensors like load cells or variable resistance sensors like RTDs. For 0-5V sensors, you should use a VoltageInput channel, like the ones on a VINT Hub or a PhidgetInterfaceKit.
by mparadis
Tue Oct 08, 2024 8:44 am
Forum: All Other Phidgets
Topic: 1047- Pinout
Replies: 4
Views: 2469

Re: 1047- Pinout

I forgot to mention- the encoder channel must be enabled in order for you to see power on the black connector. If you open the channel in the Phidget control panel, it will be enabled by default. If you're using your own program or script, use the "enabled" property in order to enable the ...
by mparadis
Tue Oct 08, 2024 8:18 am
Forum: All Other Phidgets
Topic: 1047- Pinout
Replies: 4
Views: 2469

Re: 1047- Pinout

Here's the pinout for the 1047:

Image

If you measure between the 5V and G pin on the black connector, you should see 5 volts. The other three pins (A, B, and Index) are inputs, so you won't see any voltage there.
by mparadis
Mon Sep 30, 2024 8:24 am
Forum: C#.NET
Topic: Using a change in voltage as a trigger in Unity
Replies: 2
Views: 2708

Re: Using a change in voltage as a trigger in Unity

You should set up a VoltageRatioChange event handler, this function will trigger whenever the voltage changes. Then you just need your program to look at the value and decide how you want the object to move. You should take a look at this sample project: Dial Phidget with Unity This project uses the...
by mparadis
Tue Sep 24, 2024 3:57 pm
Forum: General
Topic: 1048_0 vs 1048_2B
Replies: 1
Views: 4174

Re: 1048_0 vs 1048_2B

For most purposes, these two Phidgets are the same. The newer _2 revision has the plastic enclosure, uses a different USB processor chip, and has had some optimizations and fixes. The biggest difference is that the 1048_2B does not support our old Phidget21 libraries, so anyone who is using old soft...
by mparadis
Tue Sep 17, 2024 8:16 am
Forum: InterfaceKits
Topic: Door Sensor
Replies: 1
Views: 3918

Re: Door Sensor

You can put a magnetic reed switch on the cabinet door like one of these: https://www.phidgets.com/?prodid=416 https://www.phidgets.com/?prodid=418 One of them can just be nailed into the door and the frame, and the other is designed to be drilled and fit flush into the frame. When the magnet gets n...
by mparadis
Fri Aug 30, 2024 8:44 am
Forum: Javascript
Topic: Phidget22 Node-RED Module Released
Replies: 29
Views: 99080

Re: Phidget22 Node-RED Module Released

Normally when a channel disconnects, it will reconnect automatically once the channel becomes available again. For example, if you try unplugging and plugging back in a device, it should come back without restarting the flow. If the node disconnects and stays that way, there must be something else c...