1
0
Fork 0
fgdata/Aircraft/Instruments
curt 6ab2bca4ef Add a variant of the high res c172 rpm gauge that includes a working
LCD hobbs meter (instead of the previous "static" hobbs meter that was pretty
but didn't ever change.)  This requires some aircraft specific nasal support
since the hobbs meter isn't implemented in the same way on every aircraft:

# initialize the hobbs meter and configure to save every 5 minutes
var hobbs = aircraft.timer.new("/instrumentation/clock/hobbs-meter-sec");
aircraft.data.save(5);
hobbs.stop();

setlistener( "/engines/engine[0]/running",
    func {
	var running = getprop("/engines/engine[0]/running");
	if ( running ) {
	    hobbs.start();
	} else {
	    hobbs.stop();
	}
    }
);
setlistener( "/instrumentation/clock/hobbs-meter-sec",
    func {
	var secs = getprop("/instrumentation/clock/hobbs-meter-sec");
	setprop("/instrumentation/clock/hobbs-meter-hours", secs / 3600);
    },
    1
);
2009-04-22 18:11:23 +00:00
..
Textures Add clouds 2007-06-30 20:28:27 +00:00
accel.xml An N1 tachometer, accelerometer, and AoA indicator intended for the A-4 cockpit. 2002-06-20 02:05:59 +00:00
adf-c172s.xml remove garbage 2008-08-18 09:19:25 +00:00
adf-hi.xml Move the kr-87 adf from /radios to /instrumentation 2004-11-19 23:56:47 +00:00
adf-radio.xml Updates from Dave Perry: 2006-03-27 11:50:57 +00:00
adf.xml Use the new ADF radio logic (unfortunately, it does not yet support 2003-11-25 19:38:57 +00:00
alt-c172s.xml Updates to the C172-S instruments and some renaming. 2003-02-10 18:45:56 +00:00
altimeter-hi.xml Modifications to support new altimeter and static port models in 2002-09-27 18:26:42 +00:00
altimeter.xml The adjusting knob has slow (left mouse button) and fast (right mouse 2002-11-05 00:24:01 +00:00
ann-c172s.xml add note about new dependency $FG_ROOT/Aircraft/Generic/annunciator.nas 2007-01-29 22:45:41 +00:00
aoa-indexer.xml Lee Elliott: 2003-03-07 14:40:21 +00:00
aoa.xml Lee Elliott: 2003-03-07 14:40:21 +00:00
aoaL.xml Lee Elliott: 2003-03-07 14:40:21 +00:00
asi-1k-knot.xml Lee Elliott: 2006-03-02 22:40:56 +00:00
asi-160-knot-hi.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
asi-160-knot.xml New pitot system and airspeed indicator. 2002-09-28 20:49:56 +00:00
asi-260-knot.xml New pitot system and airspeed indicator. 2002-09-28 20:49:56 +00:00
asi-590-knot-a4c.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
asi-c172s.xml Omit a couple more items when "omit-knobs" is activated. 2003-11-25 01:53:08 +00:00
asi-c310.xml Improve viewpoint on Cessna 310. 2003-02-03 16:48:15 +00:00
asi.xml Updated instruments from Martin. 2003-01-30 21:28:15 +00:00
ati-c172s.xml Updates to the C172-S instruments and some renaming. 2003-02-10 18:45:56 +00:00
ati.xml Added Hi-res C172-S DG, VSI, and RPM gauges. 2003-02-01 02:30:16 +00:00
attitude-indicator-hi.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
attitude-indicator.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
autopilot.xml Modified to work with changed "switch" layer. 2003-03-09 03:41:48 +00:00
brakes.xml Attempt #1 to sort out confusion between left / right / parking brake 2004-01-12 17:49:33 +00:00
clock.xml Melchior FRANZ: 2003-06-27 08:45:35 +00:00
controls.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
default-160Knot-airspeed.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
dme.xml This code was correct (apart from the doubled binding). The problem is 2006-03-10 15:36:17 +00:00
dual-manifold-pressure.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
egt-dual.xml Recalibrated to a more realistic range. Right now, JSBSim seems to be 2002-01-19 14:47:46 +00:00
egt-ff-c172s.xml Fixes to track recent development changes. 2008-10-30 19:20:19 +00:00
egt.xml Recalibrated to a more realistic range. Right now, JSBSim seems to be 2002-01-19 14:47:46 +00:00
flap.xml Fix to use renamed /control properties. 2003-04-01 15:46:50 +00:00
fuel-c172s.xml Fixes to track recent development changes. 2008-10-30 19:20:19 +00:00
fuel.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
gear-indicator.xml Some additional updates for the controls change 2003-04-01 17:51:22 +00:00
gear.xml Some additional updates for the controls change 2003-04-01 17:51:22 +00:00
gyro.xml Tidy up the hotspots a bit. 2003-01-27 01:32:46 +00:00
hdg-c172s.xml Missed one instrument. 2003-02-16 20:42:02 +00:00
hdg.xml Added Hi-res C172-S DG, VSI, and RPM gauges. 2003-02-01 02:30:16 +00:00
hsi-bk-hi.xml Fix the glideslope needles so they peg at +/- 0.7 degrees off course. 2006-03-13 20:19:06 +00:00
hsi-hi.xml Roy Vegard Ovesen: 2004-12-03 21:25:48 +00:00
hsi.xml Melchior FRANZ: 2005-01-28 15:11:56 +00:00
hsi2.xml fix "from" flag 2006-02-01 22:16:53 +00:00
jet-throttle-quadrant.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
KAP140TwoAxis.xml Roy Vegard OVESEN: 2007-04-26 18:04:51 +00:00
KAP140TwoAxisAlt.xml Roy Vegard OVESEN: 2007-04-26 18:04:51 +00:00
kln89.xml Use middle click to pull/push the pull-to-scan middle knob 2006-02-03 20:58:47 +00:00
kr-87adf.xml More /radios -> /instrumentation property name changes. However, we are still 2004-12-04 20:37:04 +00:00
kra-10a.xml Torsten Dreyer: 2005-07-31 08:31:08 +00:00
logo.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
magcompass.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
magneto-switch.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
markerbeacon.xml Changes to match Roy Ovesen's instrumentation code and property name changes. 2004-11-19 23:05:07 +00:00
md41-52x-gps-annunciator.xml MD41 GPS annunciator and NAV-GPS switch unit 2005-10-02 18:08:49 +00:00
mixture-knob.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
n1.xml An N1 tachometer, accelerometer, and AoA indicator intended for the A-4 cockpit. 2002-06-20 02:05:59 +00:00
nav1-hi.xml remove garbage 2008-08-18 09:19:25 +00:00
nav1.xml remove garbage 2008-08-18 09:19:25 +00:00
nav3.xml Csaba HALASZ: fix dme property name 2007-03-01 17:39:52 +00:00
navcom-kx155.xml Updates from Dave Perry: 2006-03-27 11:50:57 +00:00
navcom-radio.xml Roy Vegard Ovesen: 2004-12-03 21:25:48 +00:00
oat.xml - Make hi-res c172s instrument knobs drawn conditionally. 2003-05-27 19:58:52 +00:00
oil-c172s.xml Fixes to track recent development changes. 2008-10-30 19:20:19 +00:00
oil.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
pilot-g.xml Lee Elliott: 2006-03-02 22:40:56 +00:00
propeller-knob.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
radar-minimized.xml Add a missing file. 2004-03-22 10:04:48 +00:00
radar.xml Csaba "Jester" HALASZ: radar fix & extension 2007-04-04 09:51:39 +00:00
rmi.xml Move the kr-87 adf from /radios to /instrumentation 2004-11-19 23:56:47 +00:00
rpm-c172s-digi-hobbs.xml Add a variant of the high res c172 rpm gauge that includes a working 2009-04-22 18:11:23 +00:00
rpm-c172s.xml Updates to the C172-S instruments and some renaming. 2003-02-10 18:45:56 +00:00
rpm-hi.xml Hi-res versions of altimeter and airspeed indicators from Martin Dressler. 2002-08-22 17:38:35 +00:00
rpm.xml Revert to original RPM gauge. If you want to use the new one on a panel, 2003-02-16 20:48:33 +00:00
single-magneto-switch.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
single-manifold-pressure.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
switch.xml Modified to work with changed "switch" layer. 2003-03-09 03:41:48 +00:00
tach-2700-redline.xml Instruments are now consolidated in a single directory. 2001-12-12 14:20:38 +00:00
three-step-flap-quadrant.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
throttle-knob.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
throttle-quadrant.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
trn-c172s.xml Off indicator when volts drop below 20. 2005-08-23 02:34:03 +00:00
trn.xml Added Hi-res C172-S DG, VSI, and RPM gauges. 2003-02-01 02:30:16 +00:00
turn-hi.xml Replaced /steam properties with new /instrumentation properties. 2003-01-26 16:45:41 +00:00
turn.xml Properly line everything up visually so standard rate turns end up taking 2006-10-22 12:51:50 +00:00
twin-magneto-switch.xml Updates to refelect the controls update of FlightGear. It could be there are a few unupdated controls left. To simplify the transisition there is a file called README.properties in the docs-mini directory of FlightGear that explains the new controls layout. 2003-04-01 12:41:12 +00:00
vac-amp-c172s.xml - Make hi-res c172s instrument knobs drawn conditionally. 2003-05-27 19:58:52 +00:00
vacamp.xml Point vacamp.xml at new suction model. 2003-05-28 21:06:30 +00:00
vertical-hi.xml Modifications to support new VSI and HI models in FlightGear. 2002-09-27 22:00:02 +00:00
vertical-speed-6kfpm.xml Modifications to support new VSI and HI models in FlightGear. 2002-09-27 22:00:02 +00:00
vertical.xml Modifications to support new VSI and HI models in FlightGear. 2002-09-27 22:00:02 +00:00
vertical1k.xml Lee Elliott: 2003-01-19 03:31:36 +00:00
vor1-c172s.xml Fixes to track recent development changes. 2008-10-30 19:20:19 +00:00
vor2-c172s.xml remove garbage 2008-08-18 09:19:25 +00:00
vsi-c172s.xml Updates to the C172-S instruments and some renaming. 2003-02-10 18:45:56 +00:00
vsi.xml Added Hi-res C172-S DG, VSI, and RPM gauges. 2003-02-01 02:30:16 +00:00
weather-radar.xml s/wxradar/radar/ 2007-07-02 06:03:45 +00:00
wxradar.xml Some updated files per request of David Culp. 2004-07-03 11:13:09 +00:00
xpdr-kt76c.xml Starting a new instrument, Bendix/King KT 76C Class 1A transponder. 2001-12-23 14:14:05 +00:00