So would the hols on R1-3 be to close to each other then? also why does 1 line break into 2 lines and run under them and then back to 1 line then back to 2 line then back to 1? Why not keep it at 1 line?
Trevor
Printable View
So would the hols on R1-3 be to close to each other then? also why does 1 line break into 2 lines and run under them and then back to 1 line then back to 2 line then back to 1? Why not keep it at 1 line?
Trevor
Hi Trevor,
It's that Auto-route function. It's all the same trace, it just did something weird when I used the auto-route. I figured, it's not doing any harm so don't mess with it.
If you can get it to drop all the secondary lines, go for it. Just share the final product.
Ah, the resistors. You could mount them vertically. It's just the size of the resistor I chose from the macro library and it's not until you print it that you see how big it is (if you know what I mean). Than can be changed too if you wish.
David
that was a fast reply to bad your not on skype
Just checked the thread before I settled down the watch the MotoGP. Can't get caught up talking Flight Sim when there's motorbike racing on. lol
David
i know that
But can i do something where you have 2 things like a x and y? for example can you doCode:If (x == 10)
DoSomething(x);
Was thinking about putting 2 values from FS for example batt switch and Gen switch when there both turned off then a light would turn on, on the Announcer. Or something like that. I made a Low Voltage light but not sure on what offsets to send to it. Was thinking of maybe 1 or 2 not sure.Code:If (x == 10 and y == 10)
DoSomething(x);
O and P.S. THANKS alot guys..... now im kinda getting into the mood of make some gauges with Stepper Motors lol
Trevor
look to that site.
C++ operators
You should be able to assign diffent values dependent on a switch position. ie: if switch is in up position = 0, or is switch is in down position =1
if x=0
then... the value for one aircraft;
if x=1
then.... the value for the other aircraft
Don't know how to code it but I would think it's possible.
Stefan should be able to put this into the right context.
David
PS Just a quick break between the Moto2 and the MotoGP races.
Well im on Skype if any of you wana hang out and chat
Trevor
So can i do
What im wanting to do is add up both tanks and when the get to lass then say 13% total the low fuel light will come on.Code:case FS_L_LOW_FUEL:
FsReadDirect(0x0B7C, 4, &L_LOW_FUEL_MAIN);
FsReadDirect(0x0B84, 4, &L_LOW_FUEL_AUX);
if (L_LOW_FUEL_MAIN + L_LOW_FUEL_AUX >1069672)
FsbusWrite (C_L_LOW_FUEL, 0);
if (L_LOW_FUEL_MAIN + L_LOW_FUEL_AUX <1069670)
FsbusWrite (C_L_LOW_FUEL, 1);
break;
Trevor
fixed it
Trevor