Search Results

by fraser
Wed Mar 21, 2018 8:28 am
Forum: C#.NET
Topic: Nuget Package
Replies: 7
Views: 8380

Re: Nuget Package

I'll make one for our current version, and let me know how it works, should be up on nuget.org today sometime. Then I'll look into getting it generated per release with updates
by fraser
Thu Mar 15, 2018 10:09 am
Forum: All Other Phidgets
Topic: Dual relay board 1/0 control
Replies: 13
Views: 9182

Re: Dual relay board 1/0 control

I wouldn't bother replacing R1 or C1, I'm sure they're fine. D1 is a BAV74 dual diode w/ common cathode. U1 is a TPC6201, but it's obsolete. So use FDC6561AN as a replacement part. Edit: But if you want to replace C1, it's a 100nF 0603 R1 is a 15K 4-resistor array. Example https://www.digikey.ca/pro...
by fraser
Mon Mar 12, 2018 7:33 am
Forum: Labview
Topic: Error 7008 on StepperSetTargetPosition or Labview Crash on the same call function
Replies: 3
Views: 19389

Re: Error 7008 on StepperSetTargetPosition or Labview Crash on the same call function

Phidget calls to the library will return "Address Issue" or EPHIDGET_FAULT if there is an issue with a object pointer. In this instance for setTargetPosition, it returns it if the pointer to the object being set is NULL. So somewhere, the Phidget object is losing its address before being p...
by fraser
Fri Mar 09, 2018 8:53 am
Forum: Linux
Topic: Sonar unable to get and set sonarQuietMode
Replies: 4
Views: 7066

Re: Sonar unable to get and set sonarQuietMode

You could see interference, but it would depend on the setup. If all of your sensors are facing a somewhat different direction, the strongest signal would generally be the reflection from that particular sensor. However if you had several all facing one direction, that could be interesting.
by fraser
Mon Mar 05, 2018 12:39 pm
Forum: Linux
Topic: Sonar unable to get and set sonarQuietMode
Replies: 4
Views: 7066

Re: Sonar unable to get and set sonarQuietMode

The sonar is definitely not yet attached at that instance of code. Doing something like calling Phidget_openWaitForAttachment() instead of Phidget_open() will block the function until the device attaches, or times-out per your argument to the call. However, often even after calling openWaitForAttach...
by fraser
Thu Feb 16, 2012 12:02 pm
Forum: C/C++
Topic: visual c++ and spatial
Replies: 7
Views: 31769

Re: visual c++ and spatial

for anyone else having this issue, if the x64 option doesn't show up in the configuration manager, it is because Visual Studio will by default not install the C++ x64 compiler tools. To fix this, you need to go into your Windows Programs and Features, click Unintsall/Change on Visual Studio 2005, an...
by fraser
Wed Feb 15, 2012 10:25 am
Forum: C/C++
Topic: visual c++ and spatial
Replies: 7
Views: 31769

Re: visual c++ and spatial

someone else had this problem as well, so I just went to look and I am getting the same errors. there appears to be a problem with the 64 bit phidget21.lib. If you are running a 64 bit machine (guessing that you are), if you go into Project->Properties->Linker->Input and change the Additional Depend...