OK, back to software after my little blunder..
Still not getting it, dont know how the iochannel ties into the gauges, this was a guess on what to do. I snipped out what I did not need from the example skin, label is not working either but I bet its because I dont have it set correctly.
Code:
<?xml version="1.0" encoding="utf-8" ?>
<FusionControlCentreConfiguration version="3.0.0.0" author="Nicholas Vergunst" date_created="Tuesday, January 31st, 2008" last_modified="Thursday, February 7th, 2008">
<require>
<font name="Arial14" originalSize="14" font_config="Content\config\fonts\FusionFontArial14.xml"></font>
<font name="LED50" originalSize="50" font_config="Content\config\fonts\FusionFontLED.xml"></font>
</require>
<general>
<debug status="on"></debug>
<remote>
<watch_folder path=""></watch_folder>
</remote>
</general>
<graphics>
<main_display designed_for_size="800,600" show_at_size="800,600" menubar="sizeable" RunInSystemTray="false" MinimizeToSystemTray="true"></main_display>
<background_image style="stretch" imagefilepath="Content\FusionSRT_images\Background\Gradient_01.png" page="0"></background_image>
<!-- ** BEGIN STATIC GUAGE BACKGROUNDS ** -->
<staticimage>
<image path="Content\FusionSRT_images\Guages\OutsideTemperature.png"></image>
<display size="260,170" location="5,91" page="0" z_order="0.9"></display>
</staticimage>
<staticimage>
<image path="Content\FusionSRT_images\Guages\InsideTemperature.png"></image>
<display size="260,170" location="270,91" page="0" z_order="0.9"></display>
</staticimage>
<!-- ** END STATIC GUAGE BACKGROUNDS ** -->
<!-- ** BEGIN GUAGE NEEDLES ** -->
<multiimage id="OutsideTemperature_Guage" monitorType="variable" monitorID="Variable_OutsideTemperature">
<display size="180,180" location="46,139" page="0"></display>
<options imageScaling="stretch"></options>
<imageAUTO directory_path="Content\FusionSRT_images\Guages\UberArcByh3rk">
<image_range filename_base="" filename_start="0" filename_end="170" filename_extension="png"></image_range>
<value_range value_start="70" value_end="80"></value_range>
<options rotate="5"></options>
</imageAUTO>
</multiimage>
<multiimage id="InsideTemperature_Guage" monitorType="variable" monitorID="Variable_InsideTemperature">
<display size="180,180" location="311,139" page="0"></display>
<options imageScaling="stretch"></options>
<imageAUTO directory_path="Content\FusionSRT_images\Guages\UberArcByh3rk">
<image_range filename_base="" filename_start="0" filename_end="170" filename_extension="png"></image_range>
<value_range value_start="70" value_end="80"></value_range>
<options rotate="5"></options>
</imageAUTO>
</multiimage>
<!-- ** END GUAGE TEXT INDICATORS ** -->
</graphics>
<io>
<brain id="MainBrain">usb\vid_04d8&pid_000c\6&4dc1f33&0&2</brain>
<timer id="logic" interval="65"></timer>
<timer id="gui" interval="30"></timer>
<timer id="output" interval="100"></timer>
<timer id="input" interval="50"></timer>
<iochannel id="InsideTemp" port="0" brain="MainBrain" type="analogue_input">
<options history="1" auto_average="false"></options>
</iochannel>
<iochannel id="OutsideTemp" port="1" brain="MainBrain" type="analogue_input">
<options history="1" auto_average="false"></options>
</iochannel>
</io>
<logic>
<all_variables>
<variable name="Variable_OutsideTemperature">70</variable>
<variable name="Variable_InsideTemperature">72</variable>
</all_variables>
<all_logging>
</all_logging>
<all_statements>
</all_statements>
</logic>
</FusionControlCentreConfiguration>