Trigger357 Posted January 15, 2022 Posted January 15, 2022 Is there a way to set up the Arduino to use with multiple modules? Thanks
crash test pilot Posted January 15, 2022 Posted January 15, 2022 (edited) A rs-485 network is your way to go. One master connected via usb to the pc, up to 127 slaves on one bus (you can use up to three). Have a look here: Edit: Just re-read your question: I guess you want to use one arduino with multiple aircrafts? Thats not that easy. You could write code for all aircraft on one arduino but you will run out of memory fast and the stability could be affected as well. More easy to swap different arduinos or use something like mmjoy for a generic hid controller - maybe? Edited January 15, 2022 by crash test pilot
No1sonuk Posted January 16, 2022 Posted January 16, 2022 You CAN use the same pins in multiple DCS-BIOS code lines for different aircraft - I have tried it in a limited way. BUT you have to be careful that there are no address clashes, and the functions have to be basically the same. crash test pilot's warning about instability still applies. I only tested a couple of simple switches and lights. You shouldn't put too much in one device or it could cause issues. Check out my post here and the one following it:
Recommended Posts