Jump to content

byteman59

Members
  • Posts

    120
  • Joined

  • Last visited

Everything posted by byteman59

  1. Thanks again, here is my original topic i created a while back on the subject.
  2. Thanks Vinc_Vega Thats what I thought. Thanks for posting the code. I'm not much of a programmer, and new to arduino.
  3. Thanks No1sonuk, Actually looking for the dimensions for toggle stem only, to be able to slip over a standard toggle switch. I have also included a prototype. Toggle Switch Caps v2.stl
  4. Does anyone have the dimensions of the top part of the Honeywell 12W1-12A locking toggle switch? I'm looking to create a 3D print of them, will post file. thanks!
  5. ok, got it connected properly. // // FILE: PCF8575_isConnected.ino // AUTHOR: Rob Tillaart // DATE: 2021-01-03 // PUPROSE: demo device detection #include "PCF8575.h" // adjust addresses if needed PCF8575 PCF(0x20); void setup() { Serial.begin(115200); // Initialise I2C I/O expander if (!PCF.begin()) { Serial.println("could not initialize..."); } else { Serial.println("Initialised!"); } // Test is I2C chip is connected if (!PCF.isConnected()) { Serial.println("=> not connected"); } else { Serial.println("=> connected!!"); } } void loop() { } // -- END OF FILE -- How would i include the DCS-BIOS commands into this sketch? For example, for the "DcsBios::Switch2Pos gearLever("GEAR_LEVER", PIN);" Thanks
  6. thank you so much! I will give it a try.
  7. Does DCS-BIOS support the use of a PCF8575 Expansion Module for Arduino?
  8. Is anyone familiar on how to code for a PCF8575 Expansion ports module in arduino mega? thanks
  9. I think this will work.http://www.leobodnar.com/shop/index.php?main_page=product_info&cPath=98_87&products_id=210 Matches the code reference in DCS-BIOS, which is looking for switch instead of Pots. Thanks No1sonuk
  10. Thanks, for the prints. Is there such thing as a digital 2 axis joystick board? Maybe topic should be moved?
  11. Got it, thank you! After revisiting DCS-BIOS, Emergency flight Control does not seem to use variable pots. Is there a different type of joystick i should be looking for? PCflights has one but i think i can make one for less than $70. https://pcflights.com/navigation-switch-joystick-2-axis-4-ways/
  12. Thank you so much! btw, where do you get the part number of items? I have the ED Flight Manual.
  13. I reinstalled DSCBIOS all working great now. Sorry for late reply, did not get notified of your posts. Have other question above. btw, i have started a DIY build of the A10-C cockpit. Doing the learning first and gather up all the information I can. Then place one large order on aliexpress for hte items i need. lol Focusing on the Left Console first. Thanks again guys!
  14. Trying to wire up a joystick in DCS-Bios to Emergency Trim CENTER - NOSE DN - RWD - NOSE UP - LWD Code says const byte efcpEmerTrimPins[9] = {PIN_0, PIN_1, PIN_2, PIN_3, PIN_4} DcsBios::SwitchMultiPos efcpEmerTrim("EFCP_EMER_TRIM", efcpEmerTrimPins, 9); using a https://www.parallax.com/product/2-axis-joystick/ Any help greatly appreciated. Thanks
  15. Is there someway to get the switch list funtions for the A10? Latching or momentary? For example, the "Line check" button on the fuel panel. Is that a momentary or latching button? Starting my build. Thanks
  16. Beginner here. I have installed DCS-World and DCS-BIOS on my computer, with default settings. Following the instructions from documentation. Not seeing this. This is all i see when i start web internface using Chrome. Not sure what im doing wrong. Thanks in advance! DCS Connection Installation Path User Profile Path Virtual Cockpit Connection Autostart DCS-BIOS Lua Console Use the table above to enable or disable DCS-BIOS features for each DCS: World installation. Check Virtual Cockpit Connection to hook into Export.lua so DCS-BIOS can receive cockpit data and send commands to DCS. Check Autostart DCS-BIOS if you want to start the DCS-BIOS Hub automatically whenever you start DCS: World. If you are a developer, you may want to check Lua Console. This is a prerequisite to use the Lua Console feature, which is useful when developing Lua scripts for DCS: World. If your DCS installation is not shown above, you can manually add the following line to your Export.lua to enable the Virtual Cockpit Connection: BIOS = {}; BIOS.LuaScriptDir = [[C:\Program Files\DCS-BIOS\dcs-lua\]]; BIOS.PluginDir = [[C:\Users\bmarino\AppData\Roaming/DCS-BIOS/Plugins\]]; if lfs.attributes(BIOS.LuaScriptDir..[[BIOS.lua]]) ~= nil then dofile(BIOS.LuaScriptDir..[[BIOS.lua]]) end --[[DCS-BIOS Automatic Setup]]
  17. To scale? What will the graphic be used for?
  18. Any more news on when the ARC-210 update will be completed?
×
×
  • Create New...