I understand the basic logic of it, though im still a pleb and need several of them ASAP. I would very appreciate if you guys (and lads) can help me.
-camera tracking (360 degrees horizontally, 10 90 degrees vertically. Also it must compensate for plane movements.
-Stall Alert
-damaged part alert (gonna use for master caution) (dunno if its possible)
-destroyed part alert (gonna use for master warning) (dunno if its possible)
-Brake mode (1 2 3 parking etc.) (also dunno if its possible)
-basic Autopilot (just tell me how i can do it)
That's it for now!
Edit=
also here is a updated cockpit from my current project, Hellkeska "Owl" Modernisation Program. This time it features digital instruments. You can find 3 different checklists and 2 displays in it.
I have created a basic autopilot with funky trees for use in some of my crafts. If you wonder how the autopilot system works, you have to understand these basic flight data functions.
.
There is a flight data function named
RollAngle
(in degrees). You may notice how this is used in the roll indicator of the gauge. If an aircraft roll right, the indicator “needle” may roll right. Configure this into the ailerons and you will have a system where if the aircraft rolls, then the the ailerons automatically cause the aircraft to roll in the opposite direction. When the aircraft rolls in the other direction, the ailerons automatically act again to roll the aircraft in he opposite direction and the system flip flops and you get an aircraft that stabilizes it’s roll angle by itself. Note that the same can be applied to other flight data functionsPitchAngle
for the pitch angle andHeading
for the heading (both also in degrees)..
I’ll give out a function from a code from one of my crafts:
(RollAngle / 4) + (10 * Roll)
Let’s see how this works:
RollAngle
function is what we already described before. However, do note that ailerons with this function may vibrate if you did not reduce the amount, hence why this function is divided by 4. Any more than 4 and theRollAngle
function becomes less powerful and may affect how the aircraft stabilizes it’s roll angle by itself.Roll
input counters theRollAngle
function and will allow the aircraft to roll until a specific degree, provided that it has a given amount enough to counter the power of theRollAngle
function (in this case, saidRoll
input is multiplied by 10).That is all I have got for you. Good luck. :)
@Mekomara
no prob, happy to help.
@ZeroWithSlashedO ah i had a smooth brain moment and totally forget sp uses m/s. My bad, it works now. Thanks for help again ^^
@Mekomara
are you below that speed? Reminder that SP uses metric as raw data. Speed is actually in m/s. If you're using km/h, go to calculator and divide the number by 3.6.
@ZeroWithSlashedO I managed to do the stall thingy, seems like it has some problems.
(GearDown ? 0 : IAS<300) & (APUAct | (MainElectricityAct & SystemElectricityAct))
Beacon lights up as soon as i retract landing gears. Am i missing something?
Also checked the camera, however seems like the code it uses is not much different from what i use at the moment. But thank you anyways!
you can do basic autopilot with trim up and a gyro