PDA

View Full Version : Audio panel settings



turbovela
12-23-2015, 01:21 PM
Hi everyone, i have been searching for an answer on this and I haven't been able to find one, in the sioc creator I have been looking for assignments for the audio panel, and can't find any. Is the audio panel used at all in the pedestal or not yet implemented?

Jose

turbovela
01-01-2016, 10:29 PM
Am I making sense on my question? I just need to know if I need to even wire the audio panel on Jeehell? Is it used at all with the software? Because I can't find any assignments for it on the sioc creator.

thanks,

Jose

Stephan Schwarz
01-02-2016, 08:54 AM
as far as I know the ACP is not implemented yet

Maddin91
01-02-2016, 11:33 AM
Hello,
I use the RAD/NAV toggle switch on the ACPs to mute or unmute the Headsets and to key the radio when flying online.
You should wire it up anyways - you never know what it can be good for later. :)

brianwilliamson
01-12-2016, 09:49 PM
I run Open cockpit radios, using their software and control the Audio panels in the console with SIOC, programmed to turn all the sounds of the radios on and off as well as pick the audio channels you need to listen to, just as was used in the FSX Airbus audio panel. Get all the morse code idents you need.

So it works exactly the same as that panel did, even lights up the selected buttons on the ACP.

Regards................Brian W.

turbovela
01-12-2016, 10:10 PM
Brian, unfortunately I am not very savvy with sioc programing, that's why the sioc creator is a great tool for me. I don't mean to be rude or anything, but, Would you be willing to share your acp file? Or an example on how to program it.

Jose

brianwilliamson
01-13-2016, 12:29 AM
Jose, try this file out. It is not all my work, but had some grest help from a couple of very clever gentlemen on this site.

Regards..........Brian W.

// *****************************************************************************
// * Config_SIOC ver 4.5 - MODIFIED Brian W.
// *****************************************************************************
// * FileName : 8 AUDIO-BUTTONS.txt
// * Date : 4/28/2014



Var 0001, name ADF1_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0002, name ADF1_SOUND_SW, Link IOCARD_SW, Input 0, Type P
{
&ADF1_SOUND = CHANGEBIT 0 ,&ADF1_SOUND_SW // Set bit 0 according to switch 0 or 1
}

Var 0003, Link IOCARD_SW, Input 0, Type P
{
IF V0004 = 0
{
V0004 = 1
}
ELSE
{
V0004 = 0
}
}

Var 0004, Link IOCARD_OUT, Output 15 // led

Var 0005, name COM1_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0006, name COM1_SOUND_SW, Link IOCARD_SW, Input 1, Type P
{
&COM1_SOUND = CHANGEBIT 7 ,&COM1_SOUND_SW // Set bit 7 according to switch 0 or 1
}

Var 0007, Link IOCARD_SW, Input 1, Type P
{
IF V0008 = 0
{
V0008 = 1
}
ELSE
{
V0008 = 0
}
}

Var 0008, Link IOCARD_OUT, Output 19 // led

Var 0009, name COM2_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0010, name COM2_SOUND_SW, Link IOCARD_SW, Input 2, Type P
{
&COM2_SOUND = CHANGEBIT 6 ,&COM2_SOUND_SW // Set bit 6 according to switch 0 or 1
}

Var 0011, Link IOCARD_SW, Input 2, Type P
{
IF V0012 = 0
{
V0012 = 1
}
ELSE
{
V0012 = 0
}
}

Var 0012, Link IOCARD_OUT, Output 12 // led

Var 0013, name ILS_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0014, name ILS_SOUND_SW, Link IOCARD_SW, Input 7, Type P
{
&ILS_SOUND = CHANGEBIT 1 ,&ILS_SOUND_SW // Set bit 1 according to switch 0 or 1
}

Var 0015, Link IOCARD_SW, Input 7, Type P
{
IF V0016 = 0
{
V0016 = 1
}
ELSE
{
V0016 = 0
}
}

Var 0016, Link IOCARD_OUT, Output 16 // led

Var 0017, name MKR_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0018, name MKR_SOUND_SW, Link IOCARD_SW, Input 8, Type P
{
&MKR_SOUND = CHANGEBIT 2 ,&MKR_SOUND_SW // Set bit 2 according to switch 0 or 1
}

Var 0019, Link IOCARD_SW, Input 8, Type P
{
IF V0020 = 0
{
V0020 = 1
}
ELSE
{
V0020 = 0
}
}

Var 0020, Link IOCARD_OUT, Output 13 // led

Var 0021, name NAV1_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0022, name NAV1_SOUND_SW, Link IOCARD_SW, Input 4, Type P
{
&NAV1_SOUND = CHANGEBIT 4 ,&NAV1_SOUND_SW // Set bit 4 according to switch 0 or 1
}

Var 0023, Link IOCARD_SW, Input 4, Type P
{
IF V0024 = 0
{
V0024 = 1
}
ELSE
{
V0024 = 0
}
}

Var 0024, Link IOCARD_OUT, Output 11 // led

Var 0025, name NAV2_SOUND, Link FSUIPC_INOUT, Offset $3122, Length 1

Var 0026, name NAV2_SOUND_SW, Link IOCARD_SW, Input 3, Type P
{
&NAV2_SOUND = CHANGEBIT 3 ,&NAV2_SOUND_SW // Set bit 3 according to switch 0 or 1
}

Var 0027, Link IOCARD_SW, Input 3, Type P
{
IF V0028 = 0
{
V0028 = 1
}
ELSE
{
V0028 = 0
}
}

Var 0028, Link IOCARD_OUT, Output 14 // led

didi21at
01-15-2016, 09:35 AM
i dont think that the audio is implimented in jeehell....
i diddnt got that working, so i use an arduino card and link2fs for the audio com panel. found the instruction how to build in internet, its not hard. if you like i can search the link

turbovela
01-15-2016, 10:58 AM
Thanks Brian, I'll check that out, and didi, it would be great if you can share that link, any help trying to make the sim more realistic is appreciated.

Thanks,

Jose

didi21at
01-17-2016, 07:33 AM
Hello turbovela!
here is the link to the com panel. i did it exactly that way, it was a bit work, but it works very fine now! If you follow the instructions step by step, then you will have success, even if you have no idea from arduino programming (like me :-) )

http://www.jimspage.co.nz/Multi_Radio.htm

here are some pics how my com panel looks like, its not exactly like in airbus, but it works fine.

greetings, didi
http://www.mycockpit.org/forums/attachment.php?attachmentid=11128&stc=1
http://www.mycockpit.org/forums/attachment.php?attachmentid=11127&stc=1http://www.mycockpit.org/forums/attachment.php?attachmentid=11129&stc=1

OmniAtlas
01-21-2016, 07:06 AM
Just out of curiosity - are ACP fsx/p3d functions implemented in the skalarki ACP?