Connecting Opencockpits modules in ProSim737

Size: px
Start display at page:

Download "Connecting Opencockpits modules in ProSim737"

Transcription

1 Connecting Opencockpits modules in ProSim737 Introduction page 2 SIOC script file page 3 SIOC.INI file page 4 Connecting your MCP page 5 Connecting your first EFIS page 11 Connecting your second EFIS page 14 Connecting your first CDU page 16 (Older version of CDU) Connecting your second CDU page 20 (Older version of CDU) Connecting your first CDU page 24 (Newest FMC-737 version) Connecting your second CDU page 29 (Newest FMC-737 version) Connecting Gauges page 34 Important lessons page 40 1

2 Introduction On a regular base, people seem to have problems to connect their Opencockpits devices and configure them for ProSim737. I hope to give some examples which will make it clear on how to connect them. When we work with Opencockpits devices, we need to do 3 important things. 1. Create or load a script to run in sioc. 2. Configure sioc.ini so your device will be recognized. 3. Configure ProSim737 to be able to communicate with sioc. Most users of ProSim737 will run multiple pc s on their network. It s important to know that we can connect Opencockpits devices to any of these pc s on the network, so they don t need to be connected to the pc where the ProSim server is running. Most easy of course is to connect all Opencockpits devices to one pc and only run sioc.exe once on the pc where your devices are connected. I ll be handling the most important Opencockpits devices such as the MCP, EFIS and CDU devices. The sioc script that I ll be using for this tutorial is the one that is provided by ProSim. You can find this script in the ProSimMCP Opencockpits folder. As sioc is already difficult enough, I ll be using the prosim_mcp.txt file and not the prosim_mcp.ssi file. NOTE: Many sioc users still think that they need to compile the.txt file to an.ssi file, but this really isn t necessary. It will make it more difficult to understand and when you start sioc.exe, the program will compile the file for you so you can always work with an understandable text file which will make it very easy to make changes to the script file when needed. Ok, enough blabla, let s get to work then. 2

3 SIOC script file A script file is basically a text file in which you tell sioc.exe what to do in certain cases. In the script you can declare variables and add code to these variables. Example: Var 623, Link IOCARD_SW, Device 2, Input 9 // APP mode { If V623 = 1 { &I_E2_DISPMODE = 1 } } This is how a script file can look like. We declared a variable and we add a condition to this variable with the code between brackets. I m not going to explain here line by line what all the code in the script files will do because that would be a tutorial on it s own. Basically in this example, sioc will test input 9 of a certain device to see if it has the value 1. If it does, it will give the value 1 to another variable with the name I_E2_DISPMODE. For those who like to write their own script, go ahead, but I suppose most users will start from the script that is provided by ProSim since it has already been tested and it has all the right variable numbers. As already mentioned in the introduction, you can find this script file in the ProsimMCP Opencockpits folder. To start using the script, copy it to your sioc folder. In most cases this will be: C:\Program Files\IOCards\SIOC The script is designed to be used with one MCP device, two EFIS devices and one CDU. If you don t have all these devices, no problem. You don t have to change or delete the code for these devices. You can leave the script as it is. If you ever buy the missing devices, you only need to connect them and configure them in sioc.ini. IMPORTANT If you ever add or change code in the ProSim script, be aware that you DON T change the variable numbers of the original script because ProSim is designed to read and write to these variables. Changing the variable numbers will cause ProSim to stop communicating with the script. 3

4 SIOC.INI file In the sioc.ini file we can configure all our opencockpit devices. In the beginning, it will be a little bit confusing because there is so many text in it. The original file contains both Spanish and English text so the first time, take your time to figure it all out. Important to know is that a script file is not the same as the sioc.ini file so please don t mix up things here. In the sioc.ini file we can not tell sioc what to do if some key is pressed. We can only configure the program here. In the sioc script file section, I told you that we would use the script file that was provided by ProSim. Now we need to configure sioc.ini so that it knows what file it should work with. Open sioc.ini and scroll down until you see this line: CONFIG_FILE=.\sioc.ssi We now change it like this to use the ProSim script: CONFIG_FILE=.\prosim_mcp.txt Ok, now save the sioc.ini file and close it. Now sioc knows that it will be using the ProSim script file. We can now continue and start connecting our Opencockpits modules one by one. 4

5 Connecting your MCP To prevent problems with displays that don t light up, it s important to connect your MCP via USB of course, but also that you connect a power supply to the MCP. Many USB busses can t provide enough power to your MCP which will result in a loss of displays. Ok, you connected the power supply and your MCP is connected to a USB buss. Windows will report that it found new hardware and it will be installed automatic. It might be possible that you need to restart your computer before you can continue. Your computer will give your MCP device a certain device number. You need this number to configure sioc so that it knows that you connected an MCP module. Now start sioc.exe and you will see your MCP in the sioc window under Devices. 5 Now there are a few important things to see on this picture under Devices: 1. IDX = * 2. IOCard-MCP -Device = IOCP SERVER: HostAddress :

6 4. IOCP SERVER: Port: 8092 If you see IDX = * before a device, this means that sioc is not configured yet for this device and that it is not able to give the device an IDX number. We will configured this in a minute. Next we see that Windows gave the MCP device the number 34. This number is very important. Ok, it s time now to configure sioc so it can work with your MCP device. Configuration sioc is done in the sioc.ini file so let s open it with notepad. You will see a lot of text but this is what we are looking for: [ English : ] [ MASTER=(Device index),(type),(number of cards),(device number) ] [ type = 0 : Master Card Emulator // OBSOLETE ] [ type = 1 : Master Card connected directly to parallel port // OBSOLETE ] [ type = 2 : Master Card connected throught compatibility cable to parallel port //OBSOLETE] [ type = 3 : Expansion Card connected throught parallel port //OBSOLETE ] [ type = 4 : USBExpansion Card used ] [ type = 5 : Opencockpits MCP module ] [ type = 6 : USBOutputs Card used ] [ type = 7 : EFIS module ] [ type = 8 : Radio COM module ] [ type = 9 : Radio NAV module ] [ type = 10 : Radio ADF module ] [ type = 11 : Radio ATC module ] [ type = 12 : Radio RMP Airbus module ] [MASTER=3,6,1,252] [MASTER=0,4,1,0] MASTER=0,9,1,0 MASTER=0,8,1,0 It might be a little confusing in the beginning but I ll explain each step you need to take. A lot of code that you see here is placed between brackets. The code between brackets will not be executed. So what is left here that can be executed: MASTER=0,9,1,0 MASTER=0,8,1,0 6

7 At this moment we only have 1 device connected, so let s change the code so we only have 1 MASTER line left. Place the first line between brackets: [MASTER=0,9,1,0] MASTER=0,8,1,0 Ok, now we only have one line active. Let s work on that one. If we go up again and take a look at the complete code we see in the beginning: [ MASTER=(Device index),(type),(number of cards),(device number) ] This is how the MASTER line is composed. 1. So we start our code always with MASTER=. 2. Next we need to configure the device index. (Remember IDX = * ) 3. Then we tell sioc what kind of device we have. 4. Then we tell sioc how many devices of that type we have. 5. Finally we tell sioc what device number our MCP is using To work with the ProSim script, you need to give the MCP device the index 0. This is very important. If you give it another index number, the script will no longer be able to find your MCP device. Now if we go up again, and we take a look in the list for the device types, we can see that our MCP is device type 5. We only have 1 MCP so number of cards will be 1. Remember that we could find the Device number in the sioc window. It was 34 in my case, but it can be another number on your computer of course. So what have we got if we put it all together: MASTER=0,5,1,34 This is how you need to change the code in the sioc.ini file. Now save the sioc.ini file and start sioc.exe again. This is what you need to see: 7

8 So now SIOC knows that on IDX = 0 we have an MCP module with device number 34. VERY IMPORTANT: If you ever disconnect your MCP and connect it to another USB-buss, Windows will give it another device number, so the 34 will change in another number. You then need to adjust the MASTER line in sioc.ini. If you don t do that, your MCP will no longer work. That s all you need to do for sioc. Now we ll continue in ProSim. We therefore need to start ProSimMCP. Once started, right-click on the MCP window and select Config You ll now see this window: 8

9 Left on top, you need to enter the IP-address of the computer where you re ProSim server software is running. In my case this is If you re running ProSimMCP on the same computer as the server software, you can also enter but you can of course still use the real IP-address like I do. If you don t know the IP-address of the server computer, go there and open a DOS-screen and at the prompt, enter: IPCONFIG This will give you the IP-address of the computer. 9

10 Now right on top you need to enter the SIOC server address and port number. Remember the four important data we saw in the sioc window: The IOCP or SIOC server address was If you re running ProSimMCP on the same computer as ProSim server, you can enter again. The port number we need to enter here is port The last thing we need to do is tick MCP/EFIS. Now press OK and restart ProSim MCP Now If your Flight Simulator, ProSim Server and ProSimMCP is running, right-click on the MCP panel. A menu will open and at the bottom of the menu you will see Status. If you click on it, you should see three green lines, meaning you have a connection with the server, a connection with flight simulator and a connection with your hardware MCP. That s all for the MCP. Enjoy. 10

11 Connecting your first EFIS Ok, now that your MCP is up and running, let s continue with your first EFIS module. We do it the same way as with the MCP module so connect your EFIS to a USB-buss. Again Windows will report the presence of new hardware. Once it s installed, start sioc.exe You ll notice that a second device is added to the list: As for the MCP, it s important to take note of the device number of your EFIS module. 29 in my case, but can be any other number in your case. If you use the Prosim_mcp.txt script file, you need to give IDX = 1 to your captain s EFIS. You can now open your sioc.ini file again so we can add some code for our first EFIS module. Remember that we already had some code for our MCP module: MASTER=0,5,1,34 For our EFIS module, we need to add an extra MASTER line. Let look again to the list of available modules: 11

12 [ MASTER=(Device index),(type),(number of cards),(device number) ] [ type = 0 : Master Card Emulator // OBSOLETE ] [ type = 1 : Master Card connected directly to parallel port // OBSOLETE ] [ type = 2 : Master Card connected throught compatibility cable to parallel port //OBSOLETE] [ type = 3 : Expansion Card connected throught parallel port //OBSOLETE ] [ type = 4 : USBExpansion Card used ] [ type = 5 : Opencockpits MCP module ] [ type = 6 : USBOutputs Card used ] [ type = 7 : EFIS module ] [ type = 8 : Radio COM module ] [ type = 9 : Radio NAV module ] [ type = 10 : Radio ADF module ] [ type = 11 : Radio ATC module ] [ type = 12 : Radio RMP Airbus module ] As you can see, our EFIS module is type 7. Since we have only 1 EFIS module at this moment with a device number of 29, we will create a new MASTER line like this: MASTER=1,7,1,29 So now you should have two MASTER lines in your sioc.ini file: MASTER=0,5,1,34 MASTER=1,7,1,29 It s very important that, if you use the ProSim script, you give IDX = 1 to your first EFIS. If you give it another number, sioc will no longer be able to communicate with your EFIS module. Ok, save your sioc.ini file again and restart sioc.exe. 12

13 Now you will see this window: Your MCP and first EFIS device is now configured in SIOC. If you already installed your MCP module, then you don t have to do anything more in ProsimMCP and you re ready to use your EFIS module. If you don t have an MCP module and only the EFIS module, then you still need to configure ProsimMCP. In that case, take a look in the MCP section of this tutorial, because you need to do exactly the same steps as for the MCP module. Ready to go 13

14 Connecting your second EFIS Finally you bought your second EFIS, Ok, let s go and configure it. I guess you already know how it goes? Connect your second EFIS module and start sioc.exe. Here s what you ll see: As for the first EFIS module, take a note of the device number of your second EFIS module. 35 in my case but again, this can be a complete other number in your case. The Prosim script is using IDX = 2 for the F/O EFIS module. Never use another IDX if you re using the ProSim script. Now we need to open sioc.ini again and add a third line for our second EFIS. We also need to change the MASTER line of our first EFIS because now we have two modules instead of only one. 14

15 What do we have until now: MASTER=0,5,1,34 MASTER=1,7,1,29 Now if we look to how a MASTER line is composed: [ MASTER=(Device index),(type),(number of cards),(device number) ] We can see that we need to change the number of cards for our EFIS modules. So we will change the code like this: MASTER=0,5,1,34 MASTER=1,7,2,29 And we will add a third line for our second EFIS module. We ll end up like this: MASTER=0,5,1,34 MASTER=1,7,2,29 MASTER=2,7,2,35 Save your sioc.ini file and start sioc.exe again. 15 Now you re ready to use your MCP and both your EFIS modules.

16 Connecting your first CDU ( Older CDU version ) I hope you already had some fun playing with your MCP and EFIS modules? Let s go a step further by connecting your first CDU. We start our procedure as we did for the previous modules, so connect your CDU to your video card and connect it to a USB-buss. Start sioc.exe and here s the window: Sioc will recognize your CDU as IOCards-Keys, the device number in my case is 39. Now just take a look at the prosim_mcp.txt script. This is the code for your CDU: Var 50, name CDUKey, Link IOCARD_KEYS, device 13 // Keyboard reading Var 51, name CDUExec, Link IOCARD_OUT, device 13, Output 2 // device Var 52, name CDUFail, Link IOCARD_OUT, device 13, Output 4 Var 53, name CDUMSG, Link IOCARD_OUT, device 13, Output 1 As you can see, the script is referring to device 13 ( IDX = 13 ). You can change this to any number you like, as long as you don t use IDX 0, 1 or 2 since they are already in use by your other devices. Let us keep it 13 for now. 16

17 For the older version of the CDU, we need to change the first line of code like this: Var 50, name CDUKey, Link USB_KEYS, device 13 // Keyboard reading Ok, open your sioc.ini file again. We will work a little different now. We don t need to add a new MASTER line. Scroll down into the sioc.ini file until you see these lines: USBStepper=0,0 USBKeys=0,0 USBServos=0,0 USBRelays=0,0 USBDCmotor=0,0 Here you can see a line USBKeys. That s the one we need to change. I already told you that we would keep IDX = 13 for our CDU, the device number in sioc.exe was 39, so we will change our code like this: USBKeys=13,39 Save the file and restart sioc.exe and this is the result: 17

18 That s all for sioc. Now you can start the ProsimCDU program. Right-clcik in the CDU window and select Config. 18 Here in the Options -tab you need to enter the IP-address of the computer where your ProSim server is running. If your running ProsimCDU on the same computer as the server, you can use IP as in this example. On the bottom of the page, you can set the power source. For your first CDU, select Captain power.

19 Now select the Drivers -tab. Here you need to enter the IP-address of the SIOC server. In my example it was The sioc server port is We also need to enter the SIOC variable offset. If we look back to the script, we can see that it need to be 50. Var 50, name CDUKey, Link USB_KEYS, device 13 // Keyboard reading Click Ok and restart ProsimCDU and you can start using your CDU. 19

20 Connecting your second CDU ( Older CDU version ) If you want to connect a second CDU, we need to add some code to the prosim_mcp.txt script file because the original script file only have some code for one CDU. Open your prosim_mcp.txt file and scroll completely to the end of the file. You wil see the code for the first CDU: Var 50, name CDUKey, Link USB_KEYS, device 13 // Keyboard reading Var 51, name CDUExec, Link IOCARD_OUT, device 13, Output 2 // device Var 52, name CDUFail, Link IOCARD_OUT, device 13, Output 4 Var 53, name CDUMSG, Link IOCARD_OUT, device 13, Output 1 Now add the following code to the script: Var 60, name CDUKey2, Link USB_KEYS, device 14 // Keyboard reading Var 61, name CDUExec2, Link IOCARD_OUT, device 14, Output 2 // device Var 62, name CDUFail2, Link IOCARD_OUT, device 14, Output 4 Var 63, name CDUMSG2, Link IOCARD_OUT, device 14, Output 1 You can see that I used Var 60 for the second CDU and device 14 ( IDX = 14 ). If we start sioc.exe we can see that our second CDU has got device number

21 In sioc.ini we again need to add some code. This is what we already got: USBStepper=0,0 USBKeys=13,39 USBServos=0,0 USBRelays=0,0 USBDCmotor=0,0 Now we add the code for the second CDU and this is what we need: USBStepper=0,0 USBKeys=13,39 USBKeys=14,41 USBServos=0,0 USBRelays=0,0 USBDCmotor=0,0 That s it for sioc. Save the sioc.ini file. Start sioc.exe and you should see this: 21

22 IMPORTANT: For the second CDU, we need to copy everything from the ProsimCDU folder into another folder so we have a second folder with our ProsimCDU software. We need to do this because we can t connect two CDU s to the same program. Once done, start the second version of your ProsimCDU software. The Options -tab should be already ok since with already entered everything for the first CDU. You only need to select F/O power as power source. 22

23 We need to make a small change on the Drivers -tab since we are using another variable for our second CDU. As you can see, I changed the SIOC variable offset from 50 to 60 for our second CDU. Click Ok and close the program. Now to use both CDU s, you need to start the two different ProsimCDU programs. 23 I tried to explain the whole procedure to connect all your Opencockpits devices as simple as possible and I hope this will be a great help for those who try to start using these modules.

24 Connecting your first CDU ( Newest FMC-737 version ) The procedure for the newest Opencockpits CDU is a little bit different then with the older version. Very important is that you need to install SIOC version We start our procedure as we did for the previous modules, so connect your CDU to your video card and connect it to a USB-buss. Start sioc.exe and here s the window: 24 Sioc will recognize your CDU as USBFMCV1.0, the device number in my case is 39. Now just take a look at the prosim_mcp.txt script. This is the code for your CDU: Var 50, name CDUKey, Link IOCARD_KEYS, device 13 // Keyboard reading Var 51, name CDUExec, Link IOCARD_OUT, device 13, Output 2 // device Var 52, name CDUFail, Link IOCARD_OUT, device 13, Output 4 Var 53, name CDUMSG, Link IOCARD_OUT, device 13, Output 1 As you can see, the script is referring to device 13 ( IDX = 13 ). You can change this to any number you like, as long as you don t use IDX 0, 1 or 2 since they are already in use by your other devices. Let us keep it 13 for now. Ok, open your sioc.ini file again.

25 Now here we need to work a little different then with the older CDU version. We need to create a new MASTER line. Let s take a look at the device list in sioc.ini of the newest sioc version: [ type = 0 : Master Card Emulator // OBSOLETE ] [ type = 1 : Master Card connected directly to parallel port // OBSOLETE ] [ type = 2 : Master Card connected throught compatibility cable to parallel port //OBSOLETE] [ type = 3 : Expansion Card connected throught parallel port //OBSOLETE ] [ type = 4 : USBExpansion Card used ] [ type = 5 : Opencockpits MCP module ] [ type = 6 : USBOutputs Card used ] [ type = 7 : EFIS module ] [ type = 8 : Radio COM module ] [ type = 9 : Radio NAV module ] [ type = 10 : Radio ADF module ] [ type = 11 : Radio ATC module ] [ type = 12 : Radio RMP Airbus module ] [ type = 13 : FMC-737 module ] [ type = 14 : USBDCmotorPLUS Card used ] We can see that the FMC module is a type 13 device. Our news MASTER line will look as this: MASTER=13,13,1,39 So our first 13 is the IDX number, then we have a type 13 device, we only have 1 unit and the device number of our CDU is 39. We finally end up like this: MASTER=0,5,1,34 MASTER=1,7,2,29 MASTER=2,7,2,35 MASTER=13,13,1,39 Save the file and restart sioc.exe and this is the result: 25

26 26 That s all for sioc. Now you can start the ProsimCDU program. Right-clcik in the CDU window and select Config.

27 Here in the Options -tab you need to enter the IP-address of the computer where your ProSim server is running. If your running ProsimCDU on the same computer as the server, you can use IP as in this example. On the bottom of the page, you can set the power source. For your first CDU, select Captain power. Now select the Drivers -tab. 27

28 Here you need to enter the IP-address of the SIOC server. In my example it was The sioc server port is We also need to enter the SIOC variable offset. If we look back to the script, we can see that it need to be 50. Var 50, name CDUKey, Link IOCARD_KEYS, device 13 // Keyboard reading Click Ok and restart ProsimCDU and you can start using your CDU. 28

29 Connecting your second CDU ( Newest FMC-737 version ) If you want to connect a second CDU, we need to add some code to the prosim_mcp.txt script file because the original script file only have some code for one CDU. Open your prosim_mcp.txt file and scroll completely to the end of the file. You wil see the code for the first CDU: Var 50, name CDUKey, Link IOCARD_KEYS, device 13 // Keyboard reading Var 51, name CDUExec, Link IOCARD_OUT, device 13, Output 2 // device Var 52, name CDUFail, Link IOCARD_OUT, device 13, Output 4 Var 53, name CDUMSG, Link IOCARD_OUT, device 13, Output 1 Now add the following code to the script: Var 60, name CDUKey2, Link IOCARD_KEYS, device 14 // Keyboard reading Var 61, name CDUExec2, Link IOCARD_OUT, device 14, Output 2 // device Var 62, name CDUFail2, Link IOCARD_OUT, device 14, Output 4 Var 63, name CDUMSG2, Link IOCARD_OUT, device 14, Output 1 You can see that I used Var 60 for the second CDU and device 14 ( IDX = 14 ). If we start sioc.exe we can see that our second CDU has got device number

30 In sioc.ini we again need to add some code. This is what we already got: MASTER=0,5,1,34 MASTER=1,7,2,29 MASTER=2,7,2,35 MASTER=13,13,1,39 Because we have a second unit, we first need to change something in the MASTER line of our first CDU: MASTER=0,5,1,34 MASTER=1,7,2,29 MASTER=2,7,2,35 MASTER=13,13,2,39 We have to change the number 1 into number 2 so sioc knows we have two CDU s. Now we add the code for the second CDU and this is what we need: MASTER=0,5,1,34 MASTER=1,7,2,29 MASTER=2,7,2,35 MASTER=13,13,2,39 MASTER=14,13,2,41 That s it for sioc. Save the sioc.ini file. Start sioc.exe and you should see this: 30

31 IMPORTANT: For the second CDU, we need to copy everything from the ProsimCDU folder into another folder so we have a second folder with our ProsimCDU software. We need to do this because we can t connect two CDU s to the same program. Once done, start the second version of your ProsimCDU software. The Options -tab should be already ok since with already entered everything for the first CDU. You only need to select F/O power as power source. 31

32 32 We need to make a small change on the Drivers -tab since we are using another variable for our second CDU.

33 As you can see, I changed the SIOC variable offset from 50 to 60 for our second CDU. Click Ok and close the program. Now to use both CDU s, you need to start the two different ProsimCDU programs. 33

34 Connecting Gauges Before we can start to use the Opencockpits gauges, we need to connect them to a Servo card. I would advice to read the official documentation about how to connect the card and the servos. There is however one point that I like to explain a little bit more. There are many different manufacturers of servos and they don t always use the same order of the wires on their connectors so if you connect the servos without verifying the right order, then this might damage the servo or the servo card. There are always three wires on a servo. Most of the time you have a black wire for GND, a red wire for the +5V signal and a third color as signal wire. The signal wire can have many different colors. So it might be possible that you need to modify the wires so they follow the right order to connect them to the servo card. On the servo card, you have three pins available for each servo. This is how you need to connect the servo to the card: Pin 1 : +5V This is the place to connect the red wire. Pin 2 : Data This is the pin for the signal wire. Pin 3 : GND This is the place to connect the black wire. Don t forget to connect a 5V power supply to J2 of the servo card, otherwise the servos will not work. Ok, now that the first servo is connected and you connected the servo card to a USB port and turned on the 5V power supply, we can start the configuration of the servo card. Upon first connection of the servo card, windows will detect new hardware and the card will be installed. It might be possible that you get the message that a restart of the computer is necessary before you can start using the card. As for the other modules, we first need to determine the device number that Windows gave to our new servo card. To do this, we need to start sioc.exe. In the sioc window, we can see all our previously configured modules and we will also find the new servo card. As you can see in the picture, the IDX number for the servo card is not yet configured and you will see IDX = *. We can also see the device number and in our example this is device number 12. To configure Prosim, we will also need to IOCP server address and IOCP port number. In the sioc window we can see that we have this: IOCP server address : IOCP port number :

35 35 Now that we know the device number of our servo card, we can start the configuration of it. Open the sioc.ini file and scroll down until you can see these lines: USBStepper=0,0 USBKeys=13,39 USBKeys=14,41 USBServos=0,0 USBRelays=0,0 USBDCmotor=0,0 In these lines, we can already see some configuration of two USBKeys, but the line that is of interest for our servo card is: USBServos=0,0 To prevent problems, I always use different IDX numbers for a new device so let s take IDX number 3 for our servo card. We already know that the device number of our servo card was number 12. We can now change the line in the sioc.ini file like this: USBServos=3,12 This is all we need to do in the sioc.ini file so you can save the file and close it again.

36 Start sioc.exe and you should see this: We can see that our servo card is configured as IDX=3. Gauge script: From the start of this tutorial, we used the Prosim_mcp.txt file as script file for sioc. As you have probably noticed, there is no sioc code in this file to handle gauges, so we need to create the code ourself and add it to the existing script file. If we create new code, then it s very important that we don t use the same variable numbers that are already in use in our script. If we take a look at the script, we can see that the highest variable number at this moment is variable 655. Let s use variable 1000 as start of our new code. The code for a gauge is very simple. It only takes one line of code. Var 1000, name apu_gauge, Link USB_SERVOS, device 3, Output 1, PosL 0, PosC 511, PosR 1023 You can add this line of code to the existing prosim_mcp.txt file. 36

37 I ve created some code for the APU overhead gauge that is connected to output 1 of the servo card. In this tutorial, we use IDX number 3 for our servo card. Therefore we need to use Device 3 in our line of code. A common made error is that many people use the number 12 that they have found in the sioc window as Device in the sioc code, but this doesn t work. You always need to use the IDX number. I know, this is very confusing sometimes. Ok, we have configured the sioc.ini file and we added a line of code to the Prosim_mcp.txt file. We can now start Prosim server to configure our gauge. Start the Prosim server software. In the menu, select Config and Configuration. We need to configure our IOCP server and port number. This is done on the Drivers tab so select Drivers. Remember that we found the IOCP data in the sioc window. On the IOCP server line, enter the address and port number of your IOCP server, so and Now that this is done, Prosim will be able to talk to your servo card via the IOCP server. We can now start to configure our APU gauge. To do so, select the Gauges tab on top of the configuration window. Scroll down to where you can find the entry for the APU gauge. 37

38 38 You can see that the status say Not Connected. You can open this selection and in the list, select IOCP. Once this is done, you will see a blank window behind IOCP. Here you need to enter the variable number of your APU gauge script. Remember that we used variable 1000 for our APU gauge. Enter this value in the blank window and you will have this:

39 Now press OK and the configuration window will close again. 39 Calibrating the gauge: You can now start using your gauge, but you will notice that the values shown on your gauge will not be the same as the one shown in the software overhead panel. This is because your gauge is not yet calibrated. To do so, open the Prosim configuration window again and scroll down to your APU gauge setting. Here you can see three sliders. 0, 1000 and Click on the first slider 0. You will see that you can now move your gauge by changing the slider. Set the slider so your hardware gauge indicates 0. You can do the same for the two other sliders so your hardware gauge will indicate the value of the slider. If this is done, you can close the configuration window again by selecting OK. That s all for this gauge. It will now indicate the correct values of the APU gauge. You can follow the same procedure for any other Opencockpits gauge, so first create a line of sioc code and then configure the gauge in Prosim configuration by entering the right variable number in the gauge section. I ll give a second sioc code example for the brake pressure indicator: Var 1001, name brake_gauge, Link USB_SERVOS, device 3, Output 2, PosL 0, PosC 511, PosR 1023 You can see that in the code, I give it variable number 1001, a certain name, the right device number (IDX=3) and I configure the right output, so the new gauge was connected to output 2 of the servo card. In Prosim configuration you then need to enter IOCP and 1001 into the brake pressure gauge setting. A second servo card? If you ever need to install a second servo card, then you need to make all the steps again, so first configure the second card in the sioc.ini file. For example, you can give the second servo card the IDX=4. In the sioc.ini file, you then need to add a new line: USBServos=4,15

40 This is just an example. The number 15 can be different for the second card ofcourse. As seen for the first card, you can check this number in the sioc window after connecting the card for the first time. The sioc script code for a gauge connected to the second servo card can look like this: Var 1002, name fueltemp_gauge, Link USB_SERVOS, device4, Output 1, PosL 0, PosC 511, PosR 1023 Here you can see that we give the variable number 1002, we name it fueltemp_gauge. It s connected to the second servo card, device 4 (IDX = 4) and the gauge is connected to the first output of the second servo card. I guess it will be no problem to configure all other gauges in your cockpit. I tried to explain the whole procedure to connect all your Opencockpits devices as simple as possible and I hope this will be a great help for those who try to start using these modules. Important lessons 1. NEVER change the variable numbers of the original prosim_mcp.txt file. 2. If you disconnect a module and connect it to another USB-buss the device number will change. In that case, you need to modify the sioc.ini file. 3. Never use the same IDX number twice or sioc will not work correctly. 4. A script file and sioc.ini are two different files. Don t mix them up. Have fun!!! Regards, Gert (Belgianguy) 40

Connecting Opencockpits modules in ProSim737

Connecting Opencockpits modules in ProSim737 Connecting Opencockpits modules in ProSim737 Introduction page 2 SIOC script file page 3 SIOC.INI file page 4 Connecting your MCP page 5 Connecting your first EFIS page 11 Connecting your second EFIS page

More information

B737 NG MOTORIZED THROTTLE SETUP MANUAL PROJECT MAGENTA. Revolution- Simproducts. All Rights Reserved

B737 NG MOTORIZED THROTTLE SETUP MANUAL PROJECT MAGENTA. Revolution- Simproducts. All Rights Reserved B737 NG MOTORIZED THROTTLE SETUP MANUAL PROJECT MAGENTA Revolution- Simproducts All Rights Reserved January 9, 2010 1 CONTENT INTRODUCTION...3 REVISION LIST...4 Installation for PM without any previous

More information

OPENCOCKPITS IOCard USBRELAYS INSTALLATION AND USER S MANUAL

OPENCOCKPITS IOCard USBRELAYS INSTALLATION AND USER S MANUAL OPENCOCKPITS IOCard USBRELAYS INSTALLATION AND USER S MANUAL INTRODUCTION The USBRelays card is designed to manage up to 7 power relays. We also have in it 5 analogic inputs, to connect up to 5 potentiometers.

More information

OPENCOCKPITS IOCard USBOUTPUTS INSTALLATION AND USER S MANUAL

OPENCOCKPITS IOCard USBOUTPUTS INSTALLATION AND USER S MANUAL OPENCOCKPITS IOCard USBOUTPUTS INSTALLATION AND USER S MANUAL INTRODUCTION This card allows us to manage easily up to 64 outputs up to 40V and 500mA on each output, with a total amount of 2,5A. Also, the

More information

IocardUSB DCMotors Plus Manual. Date:02/08/12 Rev.:1.0

IocardUSB DCMotors Plus Manual. Date:02/08/12 Rev.:1.0 IocardUSB DCMotors Plus Manual Date:02/08/12 Rev.:1.0 Index: IOCARDUSB DCMOTORS PLUS MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 USB DCMOTORS PLUS:... 3 SPECIFICATIONS:... 3 SCHEME AND MEASURES:... 4 NOTAS

More information

Opencockpits Modules (OCM) Manual

Opencockpits Modules (OCM) Manual Opencockpits Modules (OCM) Manual for PSX Version 1.1, March 27, 2018 for Windows Vista, or higher Powered by PSXseecon Copyright 2015-2018, Nico W. Kaan, Delft, Netherlands, All Rights reserved. No part

More information

Iocard USB DcMotors Manual. Date:15/02/12 Rev.:2.0

Iocard USB DcMotors Manual. Date:15/02/12 Rev.:2.0 Iocard USB DcMotors Manual Date:15/02/12 Rev.:2.0 Index: IOCARD USB DCMOTORS MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 USB DCMOTORS:... 3 Outline and components:... 3 Connectors description:... 4 CONECTIONS:...

More information

Programming the FDS-SYS1X Interface card in ProSim737:

Programming the FDS-SYS1X Interface card in ProSim737: Programming the FDS-SYS1X Interface card in ProSim737: Programming the FDS-SYS1X card for use with the ProSim737 software is not so difficult as it looks. In this example, I will program the Aft 1 Fuel

More information

B737 V3. CDU s Manual. Fecha:19/07/12 Rev.:1.0

B737 V3. CDU s Manual. Fecha:19/07/12 Rev.:1.0 Fecha:19/07/12 Rev.:1.0 Index: B737 V3. CDU S MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 FMC B737 V3:... 3 SPECIFICATIONS:... 3 APPEARANCE AND MEASURES:... 3 DESCRIPTION OF THE CONNECTORS:... 4 STARTUP

More information

CHRONO B737 & B737 LI Manual. Date:08/08/13 Rev.:1.0

CHRONO B737 & B737 LI Manual. Date:08/08/13 Rev.:1.0 CHRONO B737 & B737 LI Manual Date:08/08/13 Rev.:1.0 Index: CHRONO B737 & B737 LI MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 CHRONO B737 :... 3 CHRONO B737 LI:... 3 SPECIFICATIONS:... 3 APPEARANCE AND MEASURES:...

More information

B737 IDC Audio Panel Manual. Date:05/23/14 Rev.:1.0

B737 IDC Audio Panel Manual. Date:05/23/14 Rev.:1.0 B737 IDC Audio Panel Manual. Date:05/23/14 Rev.:1.0 Index: B737 IDC AUDIO PANEL MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 BKI TECHNOLOGY:... 3 WIRING PLAN:... 3 DESCRIPTION OF CONNECTORS:... 3 CONNECTIONS

More information

Date:15/11/13 Rev.:2.1. IOCards USB Expansion & Master Manual

Date:15/11/13 Rev.:2.1. IOCards USB Expansion & Master Manual Date:15/11/13 Rev.:2.1 IOCards USB Expansion & Master Manual Index: IOCARDS USB EXPANSION & MASTER MANUAL... 1 INDEX:... 2 INTRODUCTION:... 3 USBEXPANSION:... 3 Outline and component:... 3 Description

More information

There is often confusion about how to use SIOC. Therefore I will try to explain the basics.

There is often confusion about how to use SIOC. Therefore I will try to explain the basics. What is SIOC? Nico W. Kaan, Delft, The Netherlands, 2017 SIOC is a programming language/system that has been specifically developed to program a Flightdeck based on Opencockpits IOCards. Basically this

More information

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018

Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Installing and Configuring the Voice UPB Bridge updated 22-Jan-2018 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

OPENCOCKPITS IOCards USBKeys INSTALLATION AND USER S MANUAL

OPENCOCKPITS IOCards USBKeys INSTALLATION AND USER S MANUAL OPENCOCKPITS INSTALLATION AND USER S MANUAL INTRODUCTION The USBKeys manages automatically matrix keyboards. This card allows manage and control a keyboard via connecting pushbutton in a matrix of 11x8

More information

Opencockpits Modules (OCM) Manual

Opencockpits Modules (OCM) Manual Opencockpits Modules (OCM) Manual for the Level-D 767 Version 10.6.2, February 25, 2015 for Windows Vista, or higher Copyright 2007-2015, Nico W. Kaan, Delft, Netherlands, All Rights reserved. No part

More information

Manual IOCard USB DimControl. Date:08/18/15 Rev.:1.1

Manual IOCard USB DimControl. Date:08/18/15 Rev.:1.1 Manual IOCard USB DimControl. Date:08/18/15 Rev.:1.1 Index: MANUAL IOCARD USB DIMCONTROL... 1 INDEX:... 2 INTRODUCTION:... 3 USB DIMCONTROL:... 3 ESCHEMA:... 3 CONNECTOR DESCRIPTION:... 4 Connector J7

More information

AUTOTHROTTLE AND AUTOPILOT AUTOMATIC DISENGAGE.

AUTOTHROTTLE AND AUTOPILOT AUTOMATIC DISENGAGE. AUTOTHROTTLE AND AUTOPILOT AUTOMATIC DISENGAGE http://www.md80project.dk http://sites.google.com/site/danskemd80cockpitprojekt/ The parts needed for this build is: Input Output Optocoupler LTV 817 (Or

More information

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019

Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Installing and Configuring the Voice UPB Bridge updated 1-Jan-2019 Before starting these instructions, you should already have your Voice assistant installed and working. These instructions can be used

More information

FSC FMC/MCDU Series. Full Compatibility with. project magenta 1 INTRODUCTIONS AND SPECIFICATIONS CONFIGURING THE FMC/MCDU UNIT...

FSC FMC/MCDU Series. Full Compatibility with. project magenta 1 INTRODUCTIONS AND SPECIFICATIONS CONFIGURING THE FMC/MCDU UNIT... FSC FMC/MCDU Series INSTALLATION / CONFIGURATION MANUAL Rev. 2.0.1 - ME132395 - MAY 2016 Full Compatibility with project magenta 1 INTRODUCTIONS AND SPECIFICATIONS... 2 2 CONFIGURING THE FMC/MCDU UNIT...

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners Getting Started Excerpted from Hello World! Computer Programming for Kids and Other Beginners EARLY ACCESS EDITION Warren D. Sande and Carter Sande MEAP Release: May 2008 Softbound print: November 2008

More information

Using Devices with Microsoft HealthVault

Using Devices with Microsoft HealthVault Using Devices with Microsoft HealthVault A Microsoft HealthVault Step-by-Step Guide This guide will help you get started using Microsoft HealthVault Connection Center to send information from your health

More information

PREFACE This is a Dummies Guide. It is NOT the Help File found in Control Manager. Not all subjects will be discussed in as great detail as you would find in the Help File. However, The Dummies Guide will

More information

2SKILL. Variables Lesson 6. Remembering numbers (and other stuff)...

2SKILL. Variables Lesson 6. Remembering numbers (and other stuff)... Remembering numbers (and other stuff)... Let s talk about one of the most important things in any programming language. It s called a variable. Don t let the name scare you. What it does is really simple.

More information

CRG COCKPIT INSTRUMENTATION. Using Multiple Computers

CRG COCKPIT INSTRUMENTATION. Using Multiple Computers CRG COCKPIT INSTRUMENTATION Using Multiple Computers Abstract Having got it into my head that it would be great to make my experience one that places me in the cockpit, I searched the internet and tried

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 2 Make click events In the last lesson you learned how to set up you stage and get your project ready for some interactivity. You

More information

How To Get Your Word Document. Ready For Your Editor

How To Get Your Word Document. Ready For Your Editor How To Get Your Word Document Ready For Your Editor When your document is ready to send to your editor you ll want to have it set out to look as professional as possible. This isn t just to make it look

More information

FDS-PRO-MX-CDU/MCDU 2013 Ver 1.6 Page 1

FDS-PRO-MX-CDU/MCDU 2013 Ver 1.6 Page 1 FDS-PRO-MX-CDU/MCDU 2013 Ver 1.6 Page 1 INDEX Features... 3 Compatible Software List... 4 FDS-CDU Software Modules and Setup... 7 Sim-Avionics Setup...11 NAV DATA...16 Air Sim Tech (AST) Setup...17 Project

More information

Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09

Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09 Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09 Hello, today we will create another application called a math quiz. This

More information

Clean & Speed Up Windows with AWO

Clean & Speed Up Windows with AWO Clean & Speed Up Windows with AWO C 400 / 1 Manage Windows with this Powerful Collection of System Tools Every version of Windows comes with at least a few programs for managing different aspects of your

More information

Computer Basics: Step-by-Step Guide (Session 2)

Computer Basics: Step-by-Step Guide (Session 2) Table of Contents Computer Basics: Step-by-Step Guide (Session 2) ABOUT PROGRAMS AND OPERATING SYSTEMS... 2 THE WINDOWS 7 DESKTOP... 3 TWO WAYS TO OPEN A PROGRAM... 4 DESKTOP ICON... 4 START MENU... 5

More information

Photoshop Fundamentals

Photoshop Fundamentals Lesson 3 Photoshop Fundamentals Photoshop Fundamentals How to Navigate your Document Zooming in and out To zoom in and out on your Photoshop document, hold down the Command key (Ctrl on Win) and press

More information

PYTHON YEAR 10 RESOURCE. Practical 01: Printing to the Shell KS3. Integrated Development Environment

PYTHON YEAR 10 RESOURCE. Practical 01: Printing to the Shell KS3. Integrated Development Environment Practical 01: Printing to the Shell To program in Python you need the latest version of Python, which is freely available at www.python.org. Your school will have this installed on the computers for you,

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

Smoother Graphics Taking Control of Painting the Screen

Smoother Graphics Taking Control of Painting the Screen It is very likely that by now you ve tried something that made your game run rather slow. Perhaps you tried to use an image with a transparent background, or had a gazillion objects moving on the window

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

Your . A setup guide. Last updated March 7, Kingsford Avenue, Glasgow G44 3EU

Your  . A setup guide. Last updated March 7, Kingsford Avenue, Glasgow G44 3EU fuzzylime WE KNOW DESIGN WEB DESIGN AND CONTENT MANAGEMENT 19 Kingsford Avenue, Glasgow G44 3EU 0141 416 1040 hello@fuzzylime.co.uk www.fuzzylime.co.uk Your email A setup guide Last updated March 7, 2017

More information

Week - 01 Lecture - 04 Downloading and installing Python

Week - 01 Lecture - 04 Downloading and installing Python Programming, Data Structures and Algorithms in Python Prof. Madhavan Mukund Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 04 Downloading and

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

Taskbar: Working with Several Windows at Once

Taskbar: Working with Several Windows at Once Taskbar: Working with Several Windows at Once Your Best Friend at the Bottom of the Screen How to Make the Most of Your Taskbar The taskbar is the wide bar that stretches across the bottom of your screen,

More information

University of Hull Department of Computer Science C4DI Interfacing with Arduinos

University of Hull Department of Computer Science C4DI Interfacing with Arduinos Introduction Welcome to our Arduino hardware sessions. University of Hull Department of Computer Science C4DI Interfacing with Arduinos Vsn. 1.0 Rob Miles 2014 Please follow the instructions carefully.

More information

Hey guys, With that, let s begin. HOW TO INSTALL OFFICE 2013 ON THE WINDOWS RELEASE PREVIEW. Step 1: Create an account and join the preview

Hey guys, With that, let s begin. HOW TO INSTALL OFFICE 2013 ON THE WINDOWS RELEASE PREVIEW. Step 1: Create an account and join the preview Hey guys, It has been a while since I posted any kind of tutorial, but now that there is a new office version out, I will post a tutorial about how to install it and how it integrates into the cloud to

More information

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications Hello World! Computer Programming for Kids and Other Beginners by Warren Sande and Carter Sande Chapter 1 Copyright 2009 Manning Publications brief contents Preface xiii Acknowledgments xix About this

More information

Using GitHub to Share with SparkFun a

Using GitHub to Share with SparkFun a Using GitHub to Share with SparkFun a learn.sparkfun.com tutorial Available online at: http://sfe.io/t52 Contents Introduction Gitting Started Forking a Repository Committing, Pushing and Pulling Syncing

More information

For Volunteers An Elvanto Guide

For Volunteers An Elvanto Guide For Volunteers An Elvanto Guide www.elvanto.com Volunteers are what keep churches running! This guide is for volunteers who use Elvanto. If you re in charge of volunteers, why not check out our Volunteer

More information

SPRITES Moving Two At the Same Using Game State

SPRITES Moving Two At the Same Using Game State If you recall our collision detection lesson, you ll likely remember that you couldn t move both sprites at the same time unless you hit a movement key for each at exactly the same time. Why was that?

More information

» How do I Integrate Excel information and objects in Word documents? How Do I... Page 2 of 10 How do I Integrate Excel information and objects in Word documents? Date: July 16th, 2007 Blogger: Scott Lowe

More information

GP NHSmail Migration. -How To Guide-

GP NHSmail Migration. -How To Guide- GP NHSmail Migration -How To Guide- Table of Contents Step 1: Configuring Microsoft Outlook 2010 for use with NHS.net... 1 Step 2: Make NHS.net your default account... 2 Step 3 (Optional): Create a Mailbox

More information

VP- X Pro & VP- X Sport

VP- X Pro & VP- X Sport VP- X Configurator Release Notes As of version 1.6 (May 13, 2013) This document updated October 31, 2013 Contents 1. Models...1 2. Updating the VP-X Pro and Sport firmware (Automatic)...1 3. Software Upgrade

More information

Word Processing: Basic Skills

Word Processing: Basic Skills Word Processing: Basic Skills Name: Main: The purpose of this exercise is to practice the word processing skills that you will need to use each time you produce a "best effort" draft of writing on the

More information

Summer Assignment for AP Computer Science. Room 302

Summer Assignment for AP Computer Science. Room 302 Fall 2016 Summer Assignment for AP Computer Science email: hughes.daniel@north-haven.k12.ct.us website: nhhscomputerscience.com APCS is your subsite Mr. Hughes Room 302 Prerequisites: You should have successfully

More information

ValuePRO Tutorial Internet Explorer 8 Configuration

ValuePRO Tutorial Internet Explorer 8 Configuration ValuePRO Tutorial Internet Explorer 8 Configuration Table of Contents Contents 1. Adding ValuePRO to Trusted Sites... 1 1. Overview... 1 2. Changes Required... 1 2. Enabling Cross Site Scripting... 3 1.

More information

OPEN THE HOTLINE CLIENT

OPEN THE HOTLINE CLIENT OPEN THE HOTLINE CLIENT Everything in the Hotline universe starts with the Client Toolbar; it launches all of the Client s major functions. 1 Double-click the Hotline icon on your desktop. The Hotline

More information

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files 1-59863-307-4_APP A_541_10/31/06 Appendix A Backing Up Your Project Files At the end of every recording session, I back up my project files. It doesn t matter whether I m running late or whether I m so

More information

Java/RealJ Troubleshooting Guide

Java/RealJ Troubleshooting Guide Java/RealJ Troubleshooting Guide by Bob Clark / Sharon Curtis / Simon Jones, September 2000 Some of these tips you will come across during your practical sessions, however we felt it would be helpful to

More information

USER S MANUAL SOLO Airliner. User s Manual

USER S MANUAL SOLO Airliner. User s Manual User s Manual Rev 1.1 July 2016 TABLE OF CONTENTS 1. IDENTIFICATION OF ELEMENTS 2. INSTALLATION 3. START UP 4. SELECTION OF PANEL TYPE (according to plane) 5. ENGINE STARTING 6. SIMULATING THE BOEING 737

More information

Halloween Pumpkinusing. Wednesday, October 17, 12

Halloween Pumpkinusing. Wednesday, October 17, 12 Halloween Pumpkinusing Blink LED 1 What you will need: 1 MSP-EXP430G2 1 3 x 2 Breadboard 3 560 Ohm Resistors 3 LED s (in Red Color Range) 3 Male to female jumper wires 1 Double AA BatteryPack 2 AA Batteries

More information

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App

ELET4133: Embedded Systems. Topic 3 Eclipse Tour & Building a First App ELET4133: Embedded Systems Topic 3 Eclipse Tour & Building a First App Agenda In this class we will look at the Eclipse IDE We will examine it s various parts when working on an application We will load

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Table of Contents. How to use this document. How to use the template. Page 1 of 9

Table of Contents. How to use this document. How to use the template. Page 1 of 9 Table of Contents How to use this document... 1 How to use the template... 1 Template Sections... 2 Blank Section... 2 Signature Sheet... 2 Title Page... 2 Roman Numerals Section (i, ii, iii, iv )... 3

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

BIZPRAC 12 GUIDE RE-INSTALLATION

BIZPRAC 12 GUIDE RE-INSTALLATION BIZPRAC 12 GUIDE RE-INSTALLATION BEFORE YOU START 1. Please ensure that your computer/s meets the Minimum System Requirements: http://www.bizprac.com/wp-content/uploads/bizprac- Minimum-System-Requirements.pdf.

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 07 Tutorial 2 Part 1 Facebook API Hi everyone, welcome to the

More information

Chapter 2 The SAS Environment

Chapter 2 The SAS Environment Chapter 2 The SAS Environment Abstract In this chapter, we begin to become familiar with the basic SAS working environment. We introduce the basic 3-screen layout, how to navigate the SAS Explorer window,

More information

VLOOKUP() takes three mandatory parameters and one default/optional parameter:

VLOOKUP() takes three mandatory parameters and one default/optional parameter: Excel Lesson: Table Lookup Functions Topics Covered: VLookup() [Look across] HLookup() [Look down] Lookup() [Look almost anywhere] Related Functions (a list) We will not be examining all forms of these

More information

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch Purpose: We will take a look at programming this week using a language called Scratch. Scratch is a programming language that was developed

More information

Lutheran High North Technology The Finder

Lutheran High North Technology  The Finder Lutheran High North Technology shanarussell@lutheranhighnorth.org www.lutheranhighnorth.org/technology The Finder Your Mac s filing system is called the finder. In this document, we will explore different

More information

INSTALLATION MANUAL FOR USING YOUR THROTTLE V3. Version

INSTALLATION MANUAL FOR USING YOUR THROTTLE V3. Version INSTALLATION MANUAL FOR USING YOUR THROTTLE V3 Version 1.6.40 23. Aug. 2 0 1 7 w w w. c o k c p it f o r y o u. c o m To r s t en M ü ll e r Installation manual for using your TQ Thank you for purchasing

More information

For Windows Users - Meetings Best Practice Guide

For Windows Users - Meetings Best Practice Guide For Windows Users - Meetings Best Practice Guide SKYPE FOR BUSINESS QUICK START GUIDE SKYPE FOR BUSINESS QUICK START GUIDE - WINDOWS USERS Contents On the Skype website, you ll find Quick Start Guides

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

TMG Clerk. User Guide

TMG  Clerk. User Guide User Guide Getting Started Introduction TMG Email Clerk The TMG Email Clerk is a kind of program called a COM Add-In for Outlook. This means that it effectively becomes integrated with Outlook rather than

More information

Minix Neo Z64A basics

Minix Neo Z64A basics Minix Neo Z64A basics Contents Setting Up Your Neo Z64a... 2 Remote Essentials... 3 Using Your Minix Neo Z64A... 5 Setting up Wireless... 5 Changing Display Settings... 6 Setting the Time Zone... 8 Using

More information

MV-8800 Production Studio

MV-8800 Production Studio ÂØÒňΠWorkshop MV-8800 Production Studio Getting Around the MV-8800 s Hard Drive 2007 Roland Corporation U.S. All rights reserved. No part of this publication may be reproduced in any form without the

More information

Getting to Integris/SIS

Getting to Integris/SIS Getting to Integris/SIS Firstly, before installing the app, note a couple of things that might be helpful: a) Maybe an additional keyboard would suit some. b) Don t forget to close Integris the same way

More information

TUTORIAL. Ve r s i on 1. 0

TUTORIAL. Ve r s i on 1. 0 TUTORIAL Ve r s i on 1. 0 C O N T E N T S CHAPTER 1 1 Introduction 3 ABOUT THIS GUIDE... 4 THIS TUTORIAL...5 PROJECT OUTLINE...5 WHAT'S COVERED...5 SOURCE FILES...6 CHAPTER 2 2 The Tutorial 7 THE ENVIRONMENT...

More information

Using Microsoft Word. Getting Started With Word. Exercise 1 Starting the Program

Using Microsoft Word. Getting Started With Word. Exercise 1 Starting the Program Using Microsoft Word Getting Started With Word Exercise 1 Starting the Program There are several ways to start a program in Microsoft Windows and they may include the following: Clicking an icon on the

More information

Computer Essentials Session 1 Lesson Plan

Computer Essentials Session 1 Lesson Plan Note: Completing the Mouse Tutorial and Mousercise exercise which are available on the Class Resources webpage constitutes the first part of this lesson. ABOUT PROGRAMS AND OPERATING SYSTEMS Any time a

More information

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy?

Unit 9 Tech savvy? Tech support. 1 I have no idea why... Lesson A. A Unscramble the questions. Do you know which battery I should buy? Unit 9 Tech savvy? Lesson A Tech support 1 I have no idea why... A Unscramble the questions. 1. which battery / Do you know / should / buy / I? Do you know which battery I should buy? 2. they / where /

More information

Here are some of the more basic curves that we ll need to know how to do as well as limits on the parameter if they are required.

Here are some of the more basic curves that we ll need to know how to do as well as limits on the parameter if they are required. 1 of 10 23/07/2016 05:15 Paul's Online Math Notes Calculus III (Notes) / Line Integrals / Line Integrals - Part I Problems] [Notes] [Practice Problems] [Assignment Calculus III - Notes Line Integrals Part

More information

AVL Loom Configuration Tool

AVL Loom Configuration Tool AVL Loom Configuration Tool This program is only for those computers running the Windows operating system. It will not run on a Mac. It is intended to be a very simple application that will not run into

More information

CMPT 100 : INTRODUCTION TO

CMPT 100 : INTRODUCTION TO CMPT 100 : INTRODUCTION TO COMPUTING TUTORIAL #5 : JAVASCRIPT 2 GUESSING GAME 1 By Wendy Sharpe BEFORE WE GET STARTED... If you have not been to the first tutorial introduction JavaScript then you must

More information

Manual configuration of Microsoft Office Outlook 2010 with Microsoft Exchange 2010

Manual configuration of Microsoft Office Outlook 2010 with Microsoft Exchange 2010 Manual configuration of Microsoft Office Outlook 2010 with Microsoft Exchange 2010 THIS PAGE HAS BEEN LEFT INTENTIONALLY BLANK INTRODUCTION With the introduction of Exchange 2010 we highly reccommend using

More information

Section 0.3 The Order of Operations

Section 0.3 The Order of Operations Section 0.3 The Contents: Evaluating an Expression Grouping Symbols OPERATIONS The Distributive Property Answers Focus Exercises Let s be reminded of those operations seen thus far in the course: Operation

More information

Necessary software and hardware:

Necessary software and hardware: Necessary software and hardware: Bases: First, remember that I m a French guy so my English is not perfect ;) If you see any mistakes, don t hesitate to tell me so I can correct them (my email is at the

More information

Bits and Bytes. Here is a sort of glossary of computer buzzwords you will encounter in computer use:

Bits and Bytes. Here is a sort of glossary of computer buzzwords you will encounter in computer use: Bits and Bytes Here is a sort of glossary of computer buzzwords you will encounter in computer use: Bit Computer processors can only tell if a wire is on or off. Luckily, they can look at lots of wires

More information

Mailman Max. The postcode is a great way to work out the next sorting office a letter should go to, so you ll use that.

Mailman Max. The postcode is a great way to work out the next sorting office a letter should go to, so you ll use that. Mailman Max In this project you will make a main postal sorting office. It will need to sort letters so that they can be put into vans going to the right local sorting offices. The postcode is a great

More information

TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.O

TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.O TABLE OF CONTENTS CHANGES IN 2.0 FROM 1.0 INTRODUCTION THE BOTTOM LINE ATTACHED FILES FONTS KEYBOARD WORD PROCESSING PROGRAMS INSTALLING FONTS INSTALLING KEYBOARDS MODIFYING KEYBOARDS TO YOUR LIKING OPEN

More information

How to export data from Reckon Quicken Personal Plus to Moneydance By Michael Young

How to export data from Reckon Quicken Personal Plus to Moneydance By Michael Young How to export data from Reckon Quicken Personal Plus to Moneydance 2011 By Michael Young The information provided in this guide is provided to help users of Reckon Quicken Personal Plus transfer data to

More information

V737 Overhead. VRinsight

V737 Overhead. VRinsight VRinsight Contents 1. Introductions 1.1 General.... 1.2 Features... 2. Deliverables 3. Hardware Connection 3-1. and wing stand assembly... 3-2. USB / POWER / LED connection. 4. Software installation 4-1.

More information

IntelliJ IDEA Getting Started Guide for FIRST Robotics Competition

IntelliJ IDEA Getting Started Guide for FIRST Robotics Competition IntelliJ IDEA 2016.1 Getting Started Guide for FIRST Robotics Competition 1 PRE-REQUISITES GitHub account. Knowledge of your computer and how to use it. Administrator Account on your computer. Access to

More information

OrbBasic Lesson 1 Goto and Variables: Student Guide

OrbBasic Lesson 1 Goto and Variables: Student Guide OrbBasic Lesson 1 Goto and Variables: Student Guide Sphero MacroLab is a really cool app to give the Sphero commands, but it s limited in what it can do. You give it a list of commands and it starts at

More information

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

More information

Locate it inside of your Class/DreamWeaver folders and open it up.

Locate it inside of your Class/DreamWeaver folders and open it up. Simple Rollovers A simple rollover graphic is one that changes somehow when the mouse rolls over it. The language used to write rollovers is JavaScript. Luckily for us, when we use DreamWeaver we don t

More information

The USB-to-Serial Converter

The USB-to-Serial Converter The USB-to-Serial Converter Older type with Prolific chipset Current type with FTDI chipset Introduction The USB Serial Converter attaches to a PC USB port and provides a serial port connector, to which

More information

Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits

Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits Name EGR 2131 Lab #6 Number Representation and Arithmetic Circuits Equipment and Components Quartus software and Altera DE2-115 board PART 1: Number Representation in Microsoft Calculator. First, let s

More information

Word: Print Address Labels Using Mail Merge

Word: Print Address Labels Using Mail Merge Word: Print Address Labels Using Mail Merge No Typing! The Quick and Easy Way to Print Sheets of Address Labels Here at PC Knowledge for Seniors we re often asked how to print sticky address labels in

More information