Search Results

by frazer
Wed Jul 17, 2019 1:25 am
Forum: C#.NET
Topic: Problems with LED64 Advanced and phidget .net library > 1.1
Replies: 9
Views: 38361

Re: Problems with LED64 Advanced and phidget .net library > 1.1

I've now fixed the immediate problem I had. The code was originally from a quite old version of the API, and I had made most migrations tasks when going to version 22. But I had missed that one call was synchronous before, and is asynchronous now. After fixing this, the attach issue is no longer pre...
by frazer
Mon Jul 15, 2019 8:37 am
Forum: C#.NET
Topic: Problems with LED64 Advanced and phidget .net library > 1.1
Replies: 9
Views: 38361

Re: Problems with LED64 Advanced and phidget .net library > 1.1

Anyhow, if the problem is that the device is not connected, I don't think it should throw an internal EntryPointNotFoundException. I would consider that a bug in the Phidgets library.
by frazer
Mon Jul 15, 2019 8:35 am
Forum: C#.NET
Topic: Problems with LED64 Advanced and phidget .net library > 1.1
Replies: 9
Views: 38361

Re: Problems with LED64 Advanced and phidget .net library > 1.1

Sorry for my late reply. Here's a code example of how I'm doing it (using multiple DigitalOutputs): DigitalOutput[] phidgetsLeds = new DigitalOutput[64]; static void Main() { InitializePhidgetsLed64(); UpdateLeds(); ClosePhidgetsLed64(); } private void UpdateLeds() { SetLed(1, WarningPanel.Indicator...
by frazer
Tue Jul 09, 2019 2:38 pm
Forum: C#.NET
Topic: Problems with LED64 Advanced and phidget .net library > 1.1
Replies: 9
Views: 38361

Problems with LED64 Advanced and phidget .net library > 1.1

Hi! I've updated my Phidget drivers and library using the new NuGet package from 1.0 to the latest (1.4.20190605). Now I can't call the setter of the DigitalOutput.DutyCycle without getting an EntryPointNotFoundException like this: "Unable to find an entry point named 'Phidget_getLastError' in ...