Search Results

by erik
Mon Jun 23, 2014 1:21 pm
Forum: General
Topic: [solved]phidgetsbc not connecting to internet
Replies: 7
Views: 19267

Re: phidgetsbc not connecting to internet

If you access the SBC web configuration interface (type its IP address into a browser), you can navigate to System --> Packages and under Settings, ensure that "Include full Debian Package Repository" is enabled.
by erik
Mon Jun 23, 2014 8:37 am
Forum: General
Topic: [solved]phidgetsbc not connecting to internet
Replies: 7
Views: 19267

Re: phidgetsbc not connecting to internet

This is because when you typically connect two computer together directly, they form a "link local" connection. By default, this type of connection does not allow internet sharing/forwarding to the computer that isn't connected to WiFi - in this case, your SBC. I found this: http://www.sli...
by erik
Thu Jun 19, 2014 3:20 pm
Forum: General
Topic: Help With Exception please
Replies: 6
Views: 11834

Re: Help With Exception please

This is happening because you are setting the Enabled property before the bridge has enough time to set up communication with the device. After you call open() you should call waitForAttachment(). This is a blocking call that returns once the device hardware has been initialized by the drivers in th...
by erik
Tue Sep 04, 2012 10:45 am
Forum: Other
Topic: Residential Steam Boiler Control
Replies: 5
Views: 37401

Re: Residential Steam Boiler Control

Wow this is an awesome project!

With your system, are you seeing the 15%+ reduced consumption rate that you mentioned? What is the typical monthly difference from other years? (Specifically in the winter, if you still have the old bills, of course)
by erik
Mon Dec 06, 2010 12:05 pm
Forum: General
Topic: New PhidgetSBC Firmware Version 1.0.4
Replies: 40
Views: 330809

Re: New PhidgetSBC Firmware Version 1.0.4

In interfacekit_simple() on the line where you have tempsensor_simple(&tempsensorValue); replace with CPhidgetInterfaceKit_getSensorValue ((CPhidgetInterfaceKitHandle)ifkit, 0, tempsensorValue); If you are using the 1125 Temperature/Humidity Sensor ( http://www.phidgets.com/products.php?category...
by erik
Thu Dec 02, 2010 9:40 am
Forum: General
Topic: New PhidgetSBC Firmware Version 1.0.4
Replies: 40
Views: 330809

Re: New PhidgetSBC Firmware Version 1.0.4

The temperature sensor that you are using (the 1125) is simply an analog sensor. You cannot "connect" to it using the Open commands. You need to access the port (index) of the InterfaceKit that you plugged the sensor into. int CPhidgetInterfaceKit_getSensorValue (CPhidgetInterfaceKitHandle...
by erik
Mon Oct 25, 2010 8:39 am
Forum: C#.NET
Topic: Game (unity3d) with phidgets hangs on close
Replies: 60
Views: 2735214

Re: Game (unity3d) with phidgets hangs on close

After you close the phidgets, try inserting

Code: Select all

Application.DoEvents();
There might be event messages still in queue for the phidgets even after you've closed them.