Search Results

by cvboucher
Mon May 29, 2023 12:15 pm
Forum: Android
Topic: .Net MAUI
Replies: 0
Views: 117163

.Net MAUI

Has anyone got the Phidgets to work from a .Net MAUI app on Android? I haven't tried yet but just looking to see if anyone has had success.

Thanks,
Craig
by cvboucher
Sat Dec 17, 2022 9:34 pm
Forum: All Other Phidgets
Topic: RTD Phidget for a Pool Temp Sensor
Replies: 0
Views: 119236

RTD Phidget for a Pool Temp Sensor

Will the TMP1200 RDT Phidget work with this 2 wire 10K ohm thermistor pool temperature sensor?

https://www.amazon.com/dp/B08FBW2VCS

Thanks,
Craig
by cvboucher
Wed Dec 14, 2022 12:54 pm
Forum: C#.NET
Topic: Please add Key property to C# library
Replies: 1
Views: 16161

Please add Key property to C# library

I noticed the JavaScript Phidget API has a key property that "Gets a key which identifies this device or channel uniquely. This can be useful for correlating attach/detach events from the Manager."

Any chance this could be added to the C# API as well?

Thanks,
Craig
by cvboucher
Mon Dec 05, 2022 9:33 am
Forum: C#.NET
Topic: .Net (Core) 6 on Linux
Replies: 2
Views: 17765

Re: .Net (Core) 6 on Linux

I got this working. In addition to the Phidgets library, I was using the Networking and Manager libraries. So I had to also install libphidget22extra and libphidget-dev. sudo apt-get install -y libusb-1.0-0-dev curl -fsSL https://www.phidgets.com/downloads/setup_linux | sudo -E bash - sudo apt-get i...
by cvboucher
Fri Oct 28, 2022 8:34 pm
Forum: C#.NET
Topic: Cross threading
Replies: 2
Views: 15406

Re: Cross threading

You're trying to update the UI from a non-UI thread. You need to call Invoke.

https://stackoverflow.com/questions/661 ... her-thread

Craig
by cvboucher
Thu Oct 27, 2022 3:47 pm
Forum: C#.NET
Topic: .Net (Core) 6 on Linux
Replies: 2
Views: 17765

.Net (Core) 6 on Linux

Should the .Net Phidget libraries work on Linux? I've included the Phidget22.NET Nuget package in my project and ran the Linux install scripts on my device (Raspberry Pi). But I'm getting an exception: ---> System.DllNotFoundException: Unable to load shared library 'phidget22' or one of its dependen...
by cvboucher
Sun Oct 16, 2022 10:55 am
Forum: Linux
Topic: .NET Core and Linux
Replies: 5
Views: 20562

Re: .NET Core and Linux

Any updates on this? I have a .Net 6 app that's running on Linux and I need to add Phidget support. It's currently throwing an exception on Linux that it can't find the library. It runs successfully on Windows.

Thanks,
Craig
by cvboucher
Wed Aug 24, 2022 11:09 am
Forum: Javascript
Topic: An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.
Replies: 5
Views: 26373

Re: An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.

Since web browsers don't complain if it's connecting to localhost, it wouldn't need to implement secure websockets if the Network Server/Webserver could act as a pass through (proxy?) to the HUB5000 from the machine that the browser is running on.
by cvboucher
Mon Aug 22, 2022 10:06 pm
Forum: Javascript
Topic: An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.
Replies: 5
Views: 26373

Re: An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.

Thanks for the quick reply. We configure tablet type devices before we send them out to customers so we can install/setup other software if needed. We were planning to use the Wireless VINT Hub with digital inputs (either the DAQ1300, DAQ1301 or DAQ1400). Do you have any links on setting up a proxy ...
by cvboucher
Sat Aug 20, 2022 7:37 pm
Forum: Javascript
Topic: An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.
Replies: 5
Views: 26373

An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.

I'm using the JavaScript library in a Blazor Webassembly project. If I try to establish a NetworkConnection to anything but localhost I get the following error: Failed to construct 'WebSocket': An insecure WebSocket connection may not be initiated from a page loaded over HTTPS. I can allow insecure ...