Search Results: Patrick

Products | Content | Learn | Forums

Searched query: patrick

by Patrick
Wed Dec 14, 2022 1:03 pm
Forum: C#.NET
Topic: Please add Key property to C# library
Replies: 1
Views: 26571

Re: Please add Key property to C# library

You can use .ToString() to get a unique string that identifies the channel.

-Patrick
by scsm
Mon Dec 12, 2022 7:15 pm
Forum: C#.NET
Topic: [BUG?] Attached not set until AFTER Attach event
Replies: 2
Views: 25328

Re: [BUG?] Attached not set until AFTER Attach event

... it will now wait for any initial state to come back from the device (sensor values, etc.), up to the timeout value, and then open() returns. -Patrick Thanks again Patrick. We moved the Attached status check until after the Open port with timeout returns and it now updates in the UI correctly.
by Patrick
Mon Dec 12, 2022 11:51 am
Forum: C#.NET
Topic: [BUG?] Attached not set until AFTER Attach event
Replies: 2
Views: 25328

Re: [BUG?] Attached not set until AFTER Attach event

... it will now wait for any initial state to come back from the device (sensor values, etc.), up to the timeout value, and then open() returns. -Patrick
by scsm
Tue Dec 06, 2022 12:52 am
Forum: C#.NET
Topic: Single event handler for multiple sensors
Replies: 2
Views: 24484

Re: Single event handler for multiple sensors

Thanks Patrick. For this application, the order from multiple hubs isn't important.
by Patrick
Mon Dec 05, 2022 5:31 pm
Forum: C#.NET
Topic: Single event handler for multiple sensors
Replies: 2
Views: 24484

Re: Single event handler for multiple sensors

You will get 2 events. Which event comes in first will depend on the latencies in the system, and will be unpredictable.

-Patrick
by Patrick
Mon Dec 05, 2022 5:28 pm
Forum: C#.NET
Topic: .Net (Core) 6 on Linux
Replies: 2
Views: 26036

Re: .Net (Core) 6 on Linux

libphidget22extra shouldn't be required - this is used by our network server, but not required for network clients.

libphidget22-dev is required for .NET to find the C library.

-Patrick
by Patrick
Fri Nov 25, 2022 12:44 pm
Forum: All Other Phidgets
Topic: Cannot connect to HU5000
Replies: 2
Views: 23137

Re: Cannot connect to HU5000

... to plug the HUB into your network with ethernet, then you can load up the web interface and see what the WiFi password is set to, and change it. -Patrick
by Patrick
Wed Nov 23, 2022 4:31 pm
Forum: General
Topic: DHCP/Static IP address assignment
Replies: 4
Views: 25748

Re: DHCP/Static IP address assignment

... to list interfaces - see if the SBC has received an IP. If there is a DHCP server on your network, the SBC should be able to get and IP address. -Patrick
by Patrick
Mon Nov 21, 2022 11:35 am
Forum: General
Topic: DHCP/Static IP address assignment
Replies: 4
Views: 25748

Re: DHCP/Static IP address assignment

Does the SBC show up in the Phidgets control panel on your PC? If it doesn't get an IP from DHCP it should self-assign a link-local IP and still be accessible on the local LAN.

You could attach an HDMI monitor and keyboard and configure it locally to get in on the network.

-Patrick
by Patrick
Tue Nov 15, 2022 12:38 pm
Forum: C/C++
Topic: Phidget Basic Compass Bearing
Replies: 5
Views: 26964

Re: Phidget Basic Compass Bearing

... * Math.Cos(pitchAngle) + magField[1] * Math.Sin(pitchAngle) * Math.Sin(rollAngle) + magField[2] * Math.Sin(pitchAngle) * Math.Cos(rollAngle)); -Patrick