- Messages
- 19
- Country
Well I currently use the ASVigilus engine monitor screen in my custom made plane. I mostly copied the setup from Asobo´s Extra 330 plane.
Now I am trying to change the Engine RPM display, but for some reason I can´t change the colors indicated on the monitor (especially the engine RPM).
At the moment the RPM is always showing the indicator highlighted in the red region.
What I would like to change is the color of the Engine RPM to green and turn red when the indicator is beyond 5500.
I tried to change in the panel.xml file the line about the RPM Gauge to this code:
But the RPM Gauge always is in the reds when above 3400RPM . Is this the wrong approach? Can I actually change the Gauges within the panel.xml file?
Now I am trying to change the Engine RPM display, but for some reason I can´t change the colors indicated on the monitor (especially the engine RPM).
At the moment the RPM is always showing the indicator highlighted in the red region.
What I would like to change is the color of the Engine RPM to green and turn red when the indicator is beyond 5500.
I tried to change in the panel.xml file the line about the RPM Gauge to this code:
Code:
<Column>
<Gauge>
<Type>Circular</Type>
<ID>RPM_Gauge</ID>
<Unit>RPM</Unit>
<Minimum>0</Minimum>
<Maximum>6000</Maximum>
<Style>
<BeginAngle>-45</BeginAngle>
<EndAngle>180</EndAngle>
<ValuePos>End</ValuePos>
<CursorType>Triangle</CursorType>
</Style>
<Value>
<Simvar name="GENERAL ENG RPM:1" unit="rpm"/>
</Value>
<ColorZone>
<Color>green</Color>
<Begin>700</Begin>
<End>5500</End>
</ColorZone>
<ColorLine>
<Color>yellow</Color>
<Begin>5500</Begin>
<End>5560</End>
</ColorLine>
<ColorZone>
<Color>red</Color>
<Begin>5560</Begin>
<End>6000</End>
</ColorZone>
<BeginText></BeginText>
<EndText></EndText>
</Gauge>
</Column>
But the RPM Gauge always is in the reds when above 3400RPM . Is this the wrong approach? Can I actually change the Gauges within the panel.xml file?